Reputation: 315
My app lets user post on each others wall. Till now we were using v1.0 of facebook to do so where in me/friends would give the whole list of friends. Now when switching to 2.2 we found that the same api is giving only the friends that have logged in to our app. So we thought of using the taggable_friends api. The question is Can we use the Id given by taggable_friends to POST a Feed on that users wall?
Thanks in advance.
Upvotes: 0
Views: 48
Reputation: 74014
You can´t use anything to post to the wall of a friend, you can only post to the wall of an authorized user and you need publish_actions
for that: https://developers.facebook.com/docs/graph-api/reference/v2.2/user/feed
See the "Publishing" sections. Keep in mind that you will have to go through the review process with publish_actions
if you want it to work after April 2015: https://developers.facebook.com/docs/apps/review/login
taggable_friends
will only get approved by Facebook for tagging, not just to get a list of friends for anything else. After all you only get a tagging token anyway.
This is important about sharing in general: https://developers.facebook.com/docs/web/share
For further assistance, it would be needed to know how exactly you post on the walls right now.
Upvotes: 2