-1
我嘗試使用Facebook的圖發送評論給組,並且所有這些都是完美的,我把應用ID,組ID和其他東西放在API中,把它放在發送消息中需要使用的帖子發佈facebook羣
<?php
$graph="https://graph.facebook.com";
$id_group="1111111111111111";
$app_id="234wwwwwwwwwww";
$token="234wwwwwwwwwww|038bb73d7a0c6599115ea78b16f0095a";
?>
<form action="<?php echo $graph;?>/<?php echo $id_group;?>/feed?app_id=<?php echo $app_id;?>&access_token=<?php echo $token;?>" method="post">
<textarea name="message">Message Test</textarea>
<input type="submit" name="send" value="send">
</form>
當發送POST總是得到這樣的:
{
"error": {
"message": "(#200) The user hasn't authorized the application to perform this action",
"type": "OAuthException",
"code": 200
}
}
但我已經委託我的個人資料的應用程序,這個我不明白爲什麼沒有作品
問候