Microsoft - Social login (SSO) configuration

Enabling Sign in with Microsoft only requires two fields: Client ID and Client Secret. Both of these are provided by Azure, and these steps will help you create them.

Step-by-step Instructions

  1. Start by going to https://portal.azure.com/
  2. Next, search for App Registrations
  3. If you don't have one already, click Create An App and follow the instructions to create one. You can choose if you want to limit signups to business accounts, personal accounts, or both.

click create an app

configure_app

  1. After creating an App, first copy the Client ID.

  1. Back in your PropelAuth project, under Social Logins, you enter your Client ID for Microsoft.

paste client id

  1. Next, we need to get the Client Secret, so back in the Azure portal, click Add a certificate or secret, and then click New client secret.

add a certificate or secret

  1. Enter a name for your secret and a duration.

secret name

  1. Then copy the provided Client Secret, and paste it back in your PropelAuth project, where you previously pasted your Client ID.

copy client secret

  1. After entering the secret, note the callback URLs that PropelAuth provides. PropelAuth handles the OAuth flow on your behalf, so all we have to do is tell Microsoft to allow these callback URLs.

  2. Click Authentication in the sidebar, and then click Add a Platform. Choose Web and enter PropelAuth's provided URL(s). Note that if you have two to enter (one for test, one for prod), you can only enter one on this screen, but you'll be allowed to add more after.

redirect_urls

And that's it! When you go to your hosted authentication pages, you should see the Sign in with Microsoft button.