我想使用 api-graph 发布 stram?
应用程序具有 publish_stream
权限,但如何使用 Graph API 编写此代码?
FB.ui(
{
method: 'feed',
name: 'name',
link: 'link',
picture : 'image',
caption: 'caption',
description : 'description',
message: '',
display:'iframe',
properties: {
'Video name' : { 'text': 'alksdlkjslk', 'href': 'asdasdasd' },
'Shared From' : { 'text': 'asdadasd', 'href': 'asdasdasd' },
}
});
The application has the publish_stream
permission, but how to make this code using the Graph API?
FB.ui(
{
method: 'feed',
name: 'name',
link: 'link',
picture : 'image',
caption: 'caption',
description : 'description',
message: '',
display:'iframe',
properties: {
'Video name' : { 'text': 'alksdlkjslk', 'href': 'asdasdasd' },
'Shared From' : { 'text': 'asdadasd', 'href': 'asdasdasd' },
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用graph api发布,应该发送post请求。像这样 http://developers.facebook.com/docs/reference/api/#publishing
Publish using graph api, should send a post request. Like this http://developers.facebook.com/docs/reference/api/#publishing
试试这个:
如果不起作用,请告诉我......
Try this:
If not works please let me know...