You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only place I can think of is AfterResponse handler, and in fact I remember somebody was using it to intercept HTTP response data. Is there a problem with it?
I'm trying to use the Microsoft Graph API against Azure B2C which means at the moment I can't use the ADAL libraries since they're not supported.
The sample code does a straight HttpClient access but the underlying implementation is OData V3.
The issue is that the metadata document exists at
https://graph.windows.net/{tenantId}/$metadata?api-version=1.6
but it doesn't expose the collection of users at
https://graph.windows.net/{tenantId}/users?api-version=1.6
The only collection is of DirectoryObject (parent of User).
I suppose my question is, is there a point where I can fake in the collection of users into the metadata document; this is a bit like #132
The text was updated successfully, but these errors were encountered: