Reputation: 53
I am using Azure Mobile Apps authentication with Facebook in my app. The log in and log out is fine. I can log in with my Facebook but I am having trouble getting additional Facebook details like my profile name and picture. How can I access it with android code?
Upvotes: 1
Views: 259
Reputation: 8035
If you are using client-flow (i.e. the facebook SDK), then just call the facebook graph.
If you are using server-flow, the facebook token is available from the /.auth/me endpoint on your Azure App Service - you can use that for your facebook graph calls.
Upvotes: 2