Reputation: 110
What is the difference in using graph.microsoft & graph.windows. ? I am using graph.microsoft authentication to grab user information from AD for a Chatbot.
previously I was using graph.windows and since there was not enough information available with result string I used graph.microsoft. I wonder in future it brings an issue if I use it for production?
Upvotes: 0
Views: 188
Reputation: 6393
You will want to use Microsoft Graph (graph.microsoft) over Azure AD Graph (graph.windows). Both are still supported however Microsoft itself strongly recommends developers utilize the Microsoft Graph service.
You can read the original post from the Azure Graph team here explaining the differences between the two. It's from 2016 so things have changed since then.
This article, from November 2018, on Azure AD Graph, also recommends using Microsoft Graph.
Hope of help!
Upvotes: 4