0

我的 php 应用程序运行良好,执行其他一些 Graph API 函数。

但是,以下行:

$ret = $facebook->api("/1036102643/posts", "post", array('message'=>'This is a test 
message', 'caption'=>'test message'));

产生:

致命错误:未捕获的 GraphMethodException:不支持的发布请求。在第 1106 行扔进 /home/content/html/idvault/php-sdk/base_facebook.php

为什么我会收到此错误?我是否缺少必填字段(但 API 没有提及)?

4

1 回答 1

3

在 js sdk 中,它的 /me/feed 或 /a_group_id/feed

$ret = $facebook->api("/me/feed", "post", array('message'=>'This is a test 
message', 'caption'=>'test message'));
于 2012-06-27T05:36:46.893 回答