Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For more information about your checks output, see [Run Production Checks](/docs
| Support Email should be configured | Ensures the [Support Email](https://manage.auth0.com/#/account) is configured in Tenant Settings. |
| Support URL is configured | Ensures the [Support URL](https://manage.auth0.com/#/account) is configured in Tenant Settings. |
| Tenant Environment Tag should be configured | Ensures the [tenant environment tag](https://support.auth0.com/tenants/public) is set appropriately to Production, Staging, or Development. Changes to this tag affect your tenant's rate limit. |
| Tenant is set to use a recommended default [NodeJS version](/docs/troubleshoot/product-lifecycle/deprecations-and-migrations/migrate-actions-nodejs-16-to-nodejs-18ions-nodejs-16-to-nodejs-18) | Update your tenant to a [recommended version of NodeJS](/docs/troubleshoot/product-lifecycle/past-migrations/migrate-nodejs-16-to-nodejs-18) to take advantage of security patches and new features. |
| Tenant is set to use a recommended default [NodeJS version](/docs/troubleshoot/product-lifecycle/deprecations-and-migrations/migrate-nodejs-22) | Update your tenant to a [recommended version of NodeJS](/docs/troubleshoot/product-lifecycle/past-migrations/migrate-nodejs-16-to-nodejs-18) to take advantage of security patches and new features. |
| Tenant Login URI | Ensures that [Tenant Login URI](https://manage.auth0.com/#/tenant/advanced) is configured in Tenant Settings. |
| Use Custom Domain in Branded Email Templates | Ensure your emails templates use a [custom domain](/docs/customize/custom-domains/configure-features-to-use-custom-domains#use-custom-domains-in-emails). We strongly recommend customizing all user-facing emails to use your custom domain and company branding. |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Once you've figured out how you want to authenticate your users, the next step i

<Warning>

Native mobile applications (and desktop applications) should use the system browser for authentication, or they open themselves up to additional security risks. See [Native vs. Browser Login on Mobile](/docs/get-started/authentication-and-authorization-flow/device-authorization-flow/mobile-device-login-flow-best-practices) for more information.
Native mobile applications (and desktop applications) should use the system browser for authentication, or they open themselves up to additional security risks. See [Native Login](/docs/authenticate/login/native-login) for more information.

</Warning>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Once you've figured out how you want to authenticate your users, the next step i

<Warning>

Native mobile applications (and desktop applications) should use the system browser for authentication, or they open themselves up to additional security risks. See [Native vs. Browser Login on Mobile](/docs/get-started/authentication-and-authorization-flow/device-authorization-flow/mobile-device-login-flow-best-practices) for more information.
Native mobile applications (and desktop applications) should use the system browser for authentication, or they open themselves up to additional security risks. See [Native Login](/docs/authenticate/login/native-login) for more information.

</Warning>

Expand Down
4 changes: 2 additions & 2 deletions main/docs/quickstart/native/xamarin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {AuthCodeBlock} from "/snippets/AuthCodeBlock.jsx";

# .NET Android and iOS

<Frame>![Gravatar for frederik.prijck@auth0.com](/docs/www.gravatar.com/avatar/b74fc62fbaf2a93d1db3c549f62d4d9a?d=mm&r=g&s=50)</Frame>
<Frame>![Gravatar for frederik.prijck@auth0.com](https://www.gravatar.com/avatar/b74fc62fbaf2a93d1db3c549f62d4d9a?d=mm&r=g&s=50)</Frame>

##### By Frederik Prijck

Expand Down Expand Up @@ -353,4 +353,4 @@ BrowserResultType browserResult = await client.LogoutAsync();



[Edit on GitHub](https://github.com/auth0/docs/edit/master/articles/quickstart/native/net-android-ios/01-login.md)
[Edit on GitHub](https://github.com/auth0/docs/edit/master/articles/quickstart/native/net-android-ios/01-login.md)
2 changes: 1 addition & 1 deletion main/docs/quickstart/webapp/golang/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ func Handler(ctx *gin.Context) {


<Info>
The redirect URL needs to be in the list of Allowed Logout URLs in the settings section of the application, For more information, see [Redirect Users After Logout](/docs/authenticate/login/logout/guides/redirect-users-after-logout).
The redirect URL needs to be in the list of Allowed Logout URLs in the settings section of the application, For more information, see [Redirect Users After Logout](/docs/authenticate/login/logout/redirect-users-after-logout).
</Info>

Create a file called `user.js` in the folder `web/static/js`, and add the code to remove the cookie from a logged-in
Expand Down
Loading