Hi.
We have an App Service running in Azure.
A third party has created an AD B2C for us, provided us with the client id and secret and a profile URLs for signup / signin, edit profile and change password.
Now, we were trying to set up this AD B2C as an Identity Provider in the Authentication blade in the Azure portal for our App Service.
So far so good, requesting /.auth/login/aad?post_login_redirect_url=/user-info in the browser redirects to the login page, but after signing in this error is shown:
```
{"code":401,"message":"An error of type 'unauthorized_client' occurred during the login process: 'AADB2C90057: The provided application is not configured to allow the 'OAuth' Implicit flow.\r\nCorrelation ID: b17d0ae0-...\r\nTimestamp: 2021-05-27 13:05:49Z\r\n'"}
```
How can we configure that the Authentication support in Azure uses the Authorization Flow? Is there an alternative way to integrate AD B2C as an IdP for an App Service somehow?
Thanks!