ADAL: The request body must contain the following parameter: client_secret

后端 未结 1 1248

I wrote the authentication code below with ADAL for android:

mAuthContext = new AuthenticationContext(MainActivity.this, Constants.AUTHORITY_URL,false);
mAu         


        
相关标签:
1条回答
  • 2021-01-06 17:02

    It seems since you could not add a naive client app, you have created a Web app instead which is analogous to confidential client in OAuth protocol. That is why it is asking for client credential. ADAL Android currently does not support confidential clients.

    0 讨论(0)
提交回复
热议问题