Jagan
Jagan

Reputation: 620

Ms Dynamics Integration with Azure Active Directory

I am Using ADAL libs for java to connect MS Dynamics CRM in my backend application. I registered my trial version of CRM Azure Active Direstory and I got clientID and clientsecret from there. So now I can able to connect with my crm.

But my question is If I have multiple CRM Account how should I do this.Is there any api to register the CRM in azure active directory or is there any API to do that using the CRM crendials?

Can anyone please explain me.

Upvotes: 0

Views: 173

Answers (1)

Fei Xue
Fei Xue

Reputation: 14649

AFAIK, the MS Dynamics CRM only support Authorization code grant flow(OAuth).

If you were developing an web app, it should works well for your scenario. Since every user could sign-in the web app and than the web app can delegate the user to integrate with MSDynamics.

More detail authentication with Microsoft Dynamics 365, you can refer the document below:

Connect to Microsoft Dynamics 365 web services using OAuth

Upvotes: 1

Related Questions