在照片中标记朋友

发布于 2024-12-06 14:31:22 字数 433 浏览 0 评论 0原文

这是我的代码。它没有显示任何错误,但只标记了前 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染柒℉ 2024-12-13 14:31:22

根据 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文