在照片中标记朋友
这是我的代码。它没有显示任何错误,但只标记了前 2 个朋友!
for ($i=0;$i<count($friendsID);$i++)
{
$post_url = "https://graph.facebook.com/".$upload_photo['id']."/tags/".$friendsID[$i]."?access_token=".$token."&x=80&y=".$y."&method=POST";
$response = file_get_contents($post_url);
$post_url = urlencode($post_url);
$response = file_get_contents($post_url);
$y = $y + 53;
}
我没有收到任何错误,但代码只是没有标记所有应该标记的人!
This is my code. It does not show any errors but only the first 2 friends are tagged!
for ($i=0;$i<count($friendsID);$i++)
{
$post_url = "https://graph.facebook.com/".$upload_photo['id']."/tags/".$friendsID[$i]."?access_token=".$token."&x=80&y=".$y."&method=POST";
$response = file_get_contents($post_url);
$post_url = urlencode($post_url);
$response = file_get_contents($post_url);
$y = $y + 53;
}
I'm not receiving any error, but the code just does not tag all the people supposed to be tagged !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Facebook Developer API 中的“发布”部分docs,写入图表必须经过 POST 处理。您的书面请求使用 GET。请参阅此问题了解如何转换您的请求 POST。
顺便说一句,请注意 urlencode 只能应用于 URL 的参数,而不是整个 URL。否则冒号和; URL 底部的斜线也会被编码。
According to the "Publishing" section in the Facebook Developer API docs, writes to the graph must be POST'ed. Your request as written uses GET. See this question for how to convert your request to a POST.
As an aside, note that urlencode should only be applied to the parameters of a URL, not the entire URL. Otherwise the colons & slashes in the base part of your URL will get encoded as well.