我想 Post 我的网站 url 在我的 facebook 朋友墙上
I want to Post my website url on my facebook friend wall
我有一个网站,在我的那个页面上我想要一个 "Refer To Facebook Friend" 按钮..,通过点击它我想要我所有的 Facebook 好友列表,带有一个复选框和一个发送按钮..,然后单击发送按钮,我想 post 我的网站 URL 到我在 Facebook 上选择的所有朋友墙..
我是 Facebook API 的新手,我没有游戏,我有一个网站
提前致谢
以前这可以通过图表 api 获得,但他们在 feb 2013 的平台迁移中禁用了它,导致大量垃圾邮件投诉。所以你不能在 php .
Removing ability to post to friends walls via Graph API
We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where the target_id
user is different from the session user, will fail. If you want to allow people to post to their friends' timelines, invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag). For more info, see this blog post.
但是有一个变通办法可以让用户选择他们想要 post 将内容发送给谁。它被称为 feed dialog 。如果您使用的是 javascript SDK 提要。你可以触发它,
FB.ui({
method: 'feed',
link: 'https://developers.facebook.com/docs/',
caption: 'An example caption',
}, function(response){});
注:
If a person has the "Who can post on your timeline?" setting set to "Only me" and another person tries to make a post using the Feed dialog, it will display a "Cannot post" error.
我有一个网站,在我的那个页面上我想要一个 "Refer To Facebook Friend" 按钮..,通过点击它我想要我所有的 Facebook 好友列表,带有一个复选框和一个发送按钮..,然后单击发送按钮,我想 post 我的网站 URL 到我在 Facebook 上选择的所有朋友墙..
我是 Facebook API 的新手,我没有游戏,我有一个网站
提前致谢
以前这可以通过图表 api 获得,但他们在 feb 2013 的平台迁移中禁用了它,导致大量垃圾邮件投诉。所以你不能在 php .
Removing ability to post to friends walls via Graph API
We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where thetarget_id
user is different from the session user, will fail. If you want to allow people to post to their friends' timelines, invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag). For more info, see this blog post.
但是有一个变通办法可以让用户选择他们想要 post 将内容发送给谁。它被称为 feed dialog 。如果您使用的是 javascript SDK 提要。你可以触发它,
FB.ui({
method: 'feed',
link: 'https://developers.facebook.com/docs/',
caption: 'An example caption',
}, function(response){});
注:
If a person has the "Who can post on your timeline?" setting set to "Only me" and another person tries to make a post using the Feed dialog, it will display a "Cannot post" error.