I have two applications, they have been granted the same permissions. when I use them to get the user's wall feeds (they both hit /me/feed), I found that they got different data. The output of first application contains more feeds such as "user changed the status" and "user liked sth" which I don't need, while the output of the second one only contains feeds like "user shared link" which usually come with a picture. if I copy the access token generated by the second one and paste it to the first application, it will get same data as the second application. I'm wondering how to generate an access token in the first application which get the same data as the second application, I just want the output to only contains the feeds like "user shared some links"
You can also simulate the case with graph api explorer and Test_console:
1.Go to: http: //developers.facebook.com/docs/reference/api/, you can find the token which generated by the Test_console from the following links:
Friends: https: //graph.facebook.com/me/friends?access_token=... News feed (this is an outdated view, does not reflect the News Feed on facebook.com): https: //graph.facebook.com/me/home?access_token=... Profile feed (Wall): https: //graph.facebook.com/me/feed?access_token=... Likes: https: //graph.facebook.com/me/likes?access_token=... Movies: https: //graph.facebook.com/me/movies?access_token=... Music: https: //graph.facebook.com/me/music?access_token=... Books: https: //graph.facebook.com/me/books?access_token=... Notes: https: //graph.facebook.com/me/notes?access_token=... Permissions: https: //graph.facebook.com/me/permissions?access_token=... Photo Tags: https: //graph.facebook.com/me/photos?access_token=... Photo Albums: https: //graph.facebook.com/me/albums?access_token=... Video Tags: https: //graph.facebook.com/me/videos?access_token=... Video Uploads: https: //graph.facebook.com/me/videos/uploaded?access_token=... Events: https: //graph.facebook.com/me/events?access_token=... Groups: https: //graph.facebook.com/me/groups?access_token=... Checkins: https: //graph.facebook.com/me/checkins?access_token=... Objects with Location: https: //graph.facebook.com/me/locations?access_token=...
then copy the token and paste it to the token input field on graph api explorer http: //developers.facebook.com/tools/explorer/[USERID]/?method=GET&path=me%2Ffeed. Click submit, it will display 25 feeds
2.On http: //developers.facebook.com/docs/reference/api/, click the permission link:
Permissions: https: //graph.facebook.com/me/permissions?access_token=...
it list all the permissions granted to the token generated by the Test_console, then go back to graph api explorer http://developers.facebook.com/tools/explorer/[USERID]/?method=GET&path=me%2Ffeed, click “get access token”, check all the permission that shows on the above page, you will get new token generated by graph api explorer, then click submit, you will get a new set of 25 feeds.
You may notice that the output in the second step (graph api explorer) is different from the those in the first step (Test_console), but they have the same permission, url of api call, this is the same scenario that I encountered with my two applications. I want my first application get the data looks like the one generated by the Test_console, but it always get the same data as the one generated by the graph api explorer.