Remove “via APP_NAME” on post made from facebook graph api in rails

佐手、 提交于 2019-11-28 09:49:59

问题


Currently, I'm using RestClient to make simple posts to friends' timelines.

RestClient.post 'https://graph.facebook.com/_friend_/feed', :access_token => "_token_", :message => "_message_"

This works, but when it appears on my friend's timeline, there is text at the bottom of the post that says "via APP_NAME". Is there any way to get rid of that?


回答1:


No - only Facebook's site can do that. 3rd party apps will always show what app it was posted by.



来源:https://stackoverflow.com/questions/9014659/remove-via-app-name-on-post-made-from-facebook-graph-api-in-rails

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