is there any way to get the IM username in contact information, for example jabber or msn username? I didnt find the apropirate permission in api docs. Have any idea?
To put it simply: You can't access that information via graph API.
Related
What I'm trying to do is Authorize my Facebook APP to manage user profile and get their list of conversations and list it in my site and also they can reply on the conversations through my site is this possible to do?
If not possible do you have any suggestions.
Thank you in advance happy coding
How can I do this? Im using Graph API v2.3
I am able to get the access token, but I don't know how to get the user's ID.
I think your post is duplicated...
Btw, just send a request to:
https://graph.facebook.com/me?access_token=...
I was wondering if its possible to get one's facebook profile (to be exact,'profile url') through their API?
I need an api to get fb profile link using a matching email address. I dont want to login to facebook though.I was trying to search for this but it seems you need to log in to facebook to get that.
Any idea or is it feasible?
You need ID of the concerned user which can't be achieved without using the Facebook Login, since Facebook login is the starting point to get the current user info (/me).
Search API could have helped you since you have the email ids of users, but unfortunately this api doesn't support user search with email!
So, answer is simple- NO, you cannot get the ID (profile link) of the user without using the facebook login.
Not that I can think of. Facebook's Graph API gives you some public info but that info given depends on the users Facebook's settings on what is public or not. You could maybe get some users profile picture but not others, making it not a very viable option for practical use. Hope that helps
I want to get all users information from my FB apps,
I tried Graph API and got only the information of my app.
Is there any way to get the users information by Graph API or something else?
Thanks!!
You need to authorize the user first, which is explained very well in the Facebook docs (including example code): https://developers.facebook.com/docs/facebook-login/v2.1
To get the basic user information, just use the /me endpoint. What you get is explained in the docs: https://developers.facebook.com/docs/graph-api/reference/v2.1/user
For other information, you need different permissions and different endpoints.
I want to get a picture from Facebook through the API from its picture id.
Has anyone else done this?
Access it here:
http://graph.facebook.com/PICTURE-ID/picture
Sample:
http://graph.facebook.com/10150165453258827/picture
If an access_token is needed, you need to use an application and the Graph API.
http://graph.facebook.com/10150165453258827/picture?access_token=xxx
Here's the documentation on access_token and authentication:
http://developers.facebook.com/docs/authentication/