我目前正在尝试通过应用程序将照片上传到页面和组。我有这些代码:
try
{
$facebook->setFileUploadSupport(true);
$args = array('message' => 'This is my image caption',);
$args['image'] = '@'.realpath('./uploads/terragarden1.png');
$response = $facebook->api('/GROUP_ID/photos/','POST',$args);
}
catch(FacebookApiException $e)
{
echo "Error: ".$e;
}
的值$args['image']
将是这样的:
@/home/publica/public_html/AutoPost/uploads/terragarden1.png
问题是它抛出了一个OAuthException: An unknown error has occurred.
我不太清楚如何处理这种错误。
附加:
当我尝试使用相同的代码发布图像并且只是更改
$response = $facebook->api('/GROUP_ID/photos/','POST',$args);
进入$response = $facebook->api('/me/photos/','POST',$args);
,图像将成功发布在用户的墙上。这里可能有什么问题?