我正在使用 Koala gem,在我的 UI 中我有一个共享链接。如何使用帖子 ID 分享帖子。能不能做到这样。
@facebook = FacebookToken.first
@graph = Koala::Facebook::API.new(@facebook.access_token)
@graph.put_object(params[:post_id], "share",:message => "First!")
它给出了以下错误
Koala::Facebook::ClientError: type: OAuthException, code: 240, message: (#240) Requires a valid user is specified (either via the session or via the API parameter for specifying the user. [HTTP 403]
我觉得许可出了问题。我在最喜欢的 bool 应用中添加了以下权限
"share_item,manage_pages,publish_stream,read_stream,offline_access,create_event,read_insights, manage_notifications"
我是否需要其他权限才能使用帖子 ID 分享帖子