docs(fix): add missing word 'change' (#1572)

This commit is contained in:
Krishna Santosh
2025-02-25 18:57:33 +05:30
committed by GitHub
parent 388942ebaa
commit 2c81dcab7c

View File

@@ -10,7 +10,7 @@ Enabling OAuth with Microsoft Azure Entra ID (formerly Active Directory) allows
### Get your Microsoft credentials
To use Microsoft as a social provider, you need to get your Microsoft credentials. Which involves generating your own Client ID and Client Secret using your Microsoft Entra ID dashboard account.
Make sure to set the redirect URL to `http://localhost:3000/api/auth/callback/microsoft` for local development. For production, you should it to the URL of your application. If you change the base path of the auth routes, you should update the redirect URL accordingly.
Make sure to set the redirect URL to `http://localhost:3000/api/auth/callback/microsoft` for local development. For production, you should change it to the URL of your application. If you change the base path of the auth routes, you should update the redirect URL accordingly.
see the [Microsoft Entra ID documentation](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app) for more information.
</Step>