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' },

}
   });
4

2 回答 2

0

使用 graph api 发布,应该发送一个 post 请求。像这样http://developers.facebook.com/docs/reference/api/#publishing

于 2011-04-13T12:15:42.587 回答
0

尝试这个:

<?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);

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

于 2011-04-13T12:22:15.757 回答