Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add disable bot protection step to native sdk quickstarts #1826

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/quickstarts/chrome-extension.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ description: Add authentication and user management to your Chrome Extension wit

This guide will use a popup.

## Disable bot protection

Bot protection is enabled by default for all Clerk apps. However, it is not supported in native apps.

To turn off bot protection:

1. In the Clerk Dashboard, navigate to the [**Attack protection**](https://dashboard.clerk.com/last-active?path=user-authentication/attack-protection) page.
1. Disable **Bot sign-up protection**.

## Create a new app using the Plasmo framework

[Plasmo](https://docs.plasmo.com/framework) is a browser extension framework that includes hot reloading and creating development and production extension builds easily from the same code.
Expand Down
9 changes: 9 additions & 0 deletions docs/quickstarts/expo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ description: Add authentication and user management to your Expo app with Clerk.
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY={{pub_key}}
```

## Disable bot protection

Bot protection is enabled by default for all Clerk apps. However, it is not supported in native apps.

To turn off bot protection:

1. In the Clerk Dashboard, navigate to the [**Attack protection**](https://dashboard.clerk.com/last-active?path=user-authentication/attack-protection) page.
1. Disable **Bot sign-up protection**.

## Add `<ClerkProvider>` to your root layout

<Include src="_partials/clerk-provider" />
Expand Down
9 changes: 9 additions & 0 deletions docs/quickstarts/ios.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ description: Add authentication and user management to your iOS app with Clerk.
</TutorialHero>

<Steps>
## Disable bot protection

Bot protection is enabled by default for all Clerk apps. However, it is not supported in native apps.

To turn off bot protection:

1. In the Clerk Dashboard, navigate to the [**Attack protection**](https://dashboard.clerk.com/last-active?path=user-authentication/attack-protection) page.
1. Disable **Bot sign-up protection**.

## Create an iOS Project

To get started using Clerk with iOS, create a new project in Xcode. Select SwiftUI as your interface and Swift as your language.
Expand Down
Loading