-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Redirect Url Backend SDK docs to match BAPI docs (#1238)
- Loading branch information
1 parent
ac01114
commit 3bd1c7f
Showing
6 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: The Backend RedirectUrl object | ||
description: The Backend RedirectUrl object represents a redirect URL in your application. This object is used in the Backend API. | ||
--- | ||
|
||
# The Backend `RedirectUrl` object | ||
|
||
Redirect URLs are whitelisted URLs that facilitate secure authentication flows in native applications (e.g. React Native, Expo). In these contexts, Clerk ensures that security-critical nonces are passed only to the whitelisted URLs. | ||
|
||
The Backend `RedirectUrl` object represents a redirect URL in your application. This object is used in the Backend API. | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | | ||
| --- | --- | --- | | ||
| `id` | `string` | A unique identifier for the redirect URL. | | ||
| `url` | `string` | The full URL value prefixed with `https://` or a custom scheme. For example, `https://my-app.com/oauth-callback` or `my-app://oauth-callback`. | | ||
| `createdAt` | `number` | Date when the redirect URL was first created. | | ||
| `updatedAt` | `number` | Date of the last time the redirect URL was updated. | |