$facebook->api_client->stream_publish($message,$attachment);在新的 php sdk 中

发布于 2024-10-09 00:55:07 字数 251 浏览 1 评论 0原文

对于在旧的 php sdk 中发布流,我们使用:

$facebook->api_client->stream_publish($message,$attachment);

现在我想在新版本的 php sdk 中完成它不支持 api_client 而是使用

$facebook -> api(\\an array\\);

我自己尝试了很多修改但没有成功。

For publishing stream in the old php sdk we used :

$facebook->api_client->stream_publish($message,$attachment);

Now I want to accomplish it in the new version of php sdk which doesn't support api_client but instead uses

$facebook -> api(\\an array\\);

I have tried a lot to modify it myself but in vain.

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

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

发布评论

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

评论(1

坠似风落 2024-10-16 00:55:07

如果您使用数组,无论如何您都会调用 REST API,这样您就可以坚持使用当前拥有的内容。但是,如果您愿意,我认为您可以尝试类似的方法

facebook->api(array('method' => 'stream_publish', 'message' => 'test message', 'attachment' => 'attachment details'));

尽管如此,我建议您使用此处描述的正确的图形 API 方法 http://developers.facebook.com/docs/reference/api/post/ 效果很好。

If you use an array you will call the REST API anyway so you can stick to what you currently have. However, if you want to I think you could try something like

facebook->api(array('method' => 'stream_publish', 'message' => 'test message', 'attachment' => 'attachment details'));

Nonetheless, I suggest you use a proper Graph API method which is described here http://developers.facebook.com/docs/reference/api/post/ and works well.

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