Setup an Azure App Service app to use Shibboleth or SAML for authentication

Jonah Pollard 0 Reputation points
2024-09-20T20:16:29.8566667+00:00

I am trying to configure my Azure App Service application to use an outside organization's Shibboleth v4 instance for authentication to my application. I do not see any documentation on how to achieve this using the 'Authentication' blade on my azure app service app.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,939 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 77,766 Reputation points Volunteer Moderator
    2024-09-20T20:57:29.81+00:00

    your authenication provider needs to support openid connect to use the authentication blade. they should give you the required settings.

    when you use the application blade, it adds the "Easy Auth" middleware to the application. this requires no authentication code in your application. This middleware only authenticates. you can configure the token store to include the authentication token in a request header to your app so you can do authorization.

    https://learn.microsoft.com/en-us/azure/app-service/overview-authentication-authorization#identity-providers

    otherwise, you just add code in you application to support the provider. if it works locally, then it should work when deployed. you don't need the authentication blade in this case. (be sure to update the reply urls on the external provider).


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.