$facebook->api_client->stream_publish($message,$attachment);在新的 php sdk 中
对于在旧的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用数组,无论如何您都会调用 REST API,这样您就可以坚持使用当前拥有的内容。但是,如果您愿意,我认为您可以尝试类似的方法
尽管如此,我建议您使用此处描述的正确的图形 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
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.