我想使用 api-graph 发布 stram?

发布于 2024-11-01 17:46:56 字数 444 浏览 0 评论 0原文

应用程序具有 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 技术交流群。

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

发布评论

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

评论(2

送君千里 2024-11-08 17:46:56

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

韵柒 2024-11-08 17:46:56

试试这个:

<?php   
$access_token = "xxxx";

$fields = "message=test&access_token=$token";

$c = curl_init("http://graph.facebook.com/me/feed");
curl_setopt($c,CURLOPT_POST, true);
curl_setopt($c,CURLOPT_POSTFIELDS,$fields);

$r = curl_exec($c);
print_r($r);

如果不起作用,请告诉我......

Try this:

<?php   
$access_token = "xxxx";

$fields = "message=test&access_token=$token";

$c = curl_init("http://graph.facebook.com/me/feed");
curl_setopt($c,CURLOPT_POST, true);
curl_setopt($c,CURLOPT_POSTFIELDS,$fields);

$r = curl_exec($c);
print_r($r);

If not works please let me know...

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