如何通过 facebook php api 提供帖子链接
我需要从帖子描述中发布链接,如屏幕截图所示:
我使用 facebooks php api 尝试了很多东西像这样:
$POST = array(
// 'description' => $smiley[$smileyid]['description'],
'picture' => $oyun_resim,
'name' => 'Arkadaşın ' . $oyun_adi . ' adlı oyunda size meydan okunuyor !',
'link' => $oyun_link,
'caption' => "Arkadaşın sana meydan okuyor !!",
'description' => "<b>Arkadaşın bu oyunda sana meydan okuyor, ona rakip olmak için oyuna başla ve ondan fazla puan topla.</b><br />
{\"name\": \"OYNA !!\", \"link\": \"$oyun_link\"}",
// 'message' => "",
'text' => 'OYUNA BAŞLA !',
'href' => $oyun_link,
'actions' => '{"name": "OYNA !!", "link": "' . $oyun_link . '"}',
'cb' => '');
I need to post links from posts descriptios as in the screenshot:
I tried lots of things with facebooks php api like this:
$POST = array(
// 'description' => $smiley[$smileyid]['description'],
'picture' => $oyun_resim,
'name' => 'Arkadaşın ' . $oyun_adi . ' adlı oyunda size meydan okunuyor !',
'link' => $oyun_link,
'caption' => "Arkadaşın sana meydan okuyor !!",
'description' => "<b>Arkadaşın bu oyunda sana meydan okuyor, ona rakip olmak için oyuna başla ve ondan fazla puan topla.</b><br />
{\"name\": \"OYNA !!\", \"link\": \"$oyun_link\"}",
// 'message' => "",
'text' => 'OYUNA BAŞLA !',
'href' => $oyun_link,
'actions' => '{"name": "OYNA !!", "link": "' . $oyun_link . '"}',
'cb' => '');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
截至目前,您在 Facebook 帖子(链接)中只能有一个网址。
以下是您可以在 Facebook 帖子中使用的所有参数的列表:
http://developers. facebook.com/docs/reference/api/post
-Roozbeh
You can only have one url in a facebook post (link) as of now.
Here's a list of all the parameters you can use in a facebook post:
http://developers.facebook.com/docs/reference/api/post
-Roozbeh