使用 Graph API 在 Facebook Wall 中发布图片时出现问题

发布于 2024-10-29 02:11:13 字数 573 浏览 2 评论 0原文

我正在使用 Facebook 的 Graph API,以便通过我的应用程序将消息和图片发布到用户的墙上。 我用的是这个:

$facebook->api('/me/feed', 
               'post', 
               array( 
                 'access_token' => $token, 
                 'message' => $message, 
                 'caption' => $caption, 
                 'description' => $description, 
                 'picture' => $picture, 
                 'cb' => ''
                )
              );

现在可以用 4-5 个月左右。突然发不了图了。我根本没有更改我的代码,但现在我看不到应该发布的图像。

我真的不知道是什么问题。我真的很感激任何帮助!

提前致谢

I am using the Graph API for Facebook in order to post a message and a picture through my application to the user's wall.
I use this one:

$facebook->api('/me/feed', 
               'post', 
               array( 
                 'access_token' => $token, 
                 'message' => $message, 
                 'caption' => $caption, 
                 'description' => $description, 
                 'picture' => $picture, 
                 'cb' => ''
                )
              );

This works fine for around 4-5 months now. Suddenly I cannot post the picture. I haven't changed my code at all, but now I cannot see the image that is supposed to be posted.

I really don't know what is the problem. I would really appreciate any help!

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ぃ双果 2024-11-05 02:11:14

可能您需要使用 rawurlencode 来传递 google 图表 api url。因为它由许多特殊字符组成。

May be you need to use rawurlencode to pass google chart api url. As that consist of many special characters.

鹊巢 2024-11-05 02:11:14

该提要仅允许您上传小图像。
尝试使用小图像,如果它有效,您可能需要将其发布为图像而不是墙贴。

The feed will only allow you to upload small images.
Try a small image, if it works your probably need to post as image instead of wall post.

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