asp.net web api - How to configure Web Api access as Azure Active Directory Graph API -
i have setup webapi application , under permissions has access windows azure active directory.
the application able access graph api, , there no prompt user login.
how can achieve similar setup webapi? want applications have permissions setup access it. set way: http://bitoftech.net/2014/09/12/secure-asp-net-web-api-2-azure-active-directory-owin-middleware-adal/
but unlike when accessing graph api "windows azure active directory", prompts login.
you need use different overload of acquiretokenasync if don't want prompted authenticate. means using secret authentication of application.
string tenantid = "[your domain, such contoso.onmicrosoft.com]"; string clientsecret = "[get configure page in portal]"; string resazuregraphapi = "https://graph.windows.net"; var context = new authenticationcontext(string.format("https://login.windows.net/{0}", tenantid)); clientcredential clientcred = new clientcredential(clientid, clientsecret); authenticationresult result = await context.acquiretokenasync(resazuregraphapi, clientcred);
Comments
Post a Comment