If I issue $friends = $facebook->api('/me/friends');, is the output in JSON format?
Also, where can I find the complete list of API strings?
|
If I issue Also, where can I find the complete list of API strings? |
||||
|
|
|
the facebook php api will return an associative array, as such as mentioned by Rafiq + others, https://developers.facebook.com/docs/reference/api/ is the api reference you would be after, and the graph api explorer tool (https://developers.facebook.com/tools/explorer) is a great resource for viewing the expected JSON output of api calls .(keeping in mind the php sdk will return this as an assoc array |
||||
|
|
|
API 'commands' are GET and POST but I guess you're looking for the list of fields/tables. You should use the Graph Explorer to browse through this list and see what's available. https://developers.facebook.com/tools/explore It is also useful to see what tables are available via FQL instead of the Graph API, as the API hasn't been updated to include all functionality yet: |
|||
|
|
|
I think you are looking for this https://developers.facebook.com/docs/reference/api/ |
|||
|
|
|
Facebook returns the
It will give every info related about fields which If you are looking for other api methods, Look here. Also, dont write an answer, just update your question in case you need to say something more |
|||
|
|