我正在寻找修复错误的方法。这个错误似乎很常见,在搜索它时我发现了很多这样的主题,但没有回复。
我尝试了以下代码:
权限:
$post['req_perms'] = 'user_photos,friends_photos,publish_stream';
和:
$photo_id = '246593408718864';
$to_user_id = 'my friend id';
$args = array('x' => 50,
'y' => 50,
);
$facebook->api("/{$photo_id}/tags?to={$to_user_id}", 'POST', $args);
并收到以下错误消息:
PHP Fatal error: Uncaught OAuthException: (#121) Invalid photo id
thrown in E:\etc\src\base_facebook.php on line 1033
我是怎么做到的
错误已经解释了这个案子。您传递的照片ID无效。
使用正确的照片ID将解决问题...至少这种情况从未发生在我身上