如何通过 facebook php api 提供帖子链接

发布于 2024-10-11 08:00:33 字数 857 浏览 1 评论 0原文

我需要从帖子描述中发布链接,如屏幕截图所示:

在此处输入图像描述

我使用 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:

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帥小哥 2024-10-18 08:00:33

截至目前,您在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文