Posting on facebook wall with sdk 3.0

放肆的年华 提交于 2019-12-04 12:38:36

Everything looks right except the graphPath parameter in your Request method. Instead of:

"/" + pickedUsersId.get(0) + "/feed"

do:

pickedUsersId.get(0) + "/feed"

There should not be a leading slash "/" in front of your graph path. You can always refer to our documentation to see how exactly to publish to feed. https://developers.facebook.com/docs/howtos/androidsdk/3.0/publish-to-feed/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!