如何在数据库中存储 Facebook 个人资料图片?

发布于 2024-10-16 15:12:30 字数 270 浏览 1 评论 0原文

我们知道,要获取个人资料图片,我们使用此网址 (graph.facebook.com/1700278611/picture) 但是当我想将其存储在数据库中时,它不起作用,任何人都可以告诉我如何将该图像保存在数据库中,因为我们知道这个网址(graph.facebook.com/1700278611/picture) 重定向到此网址(http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs222.ash2/48814_1700278611_949486_q.jpg)所以请帮忙提前致谢

as we know that to get a profile picture we use this url (graph.facebook.com/1700278611/picture)
but when i want to store it in database it is not working can anybody tell me how to save that image in database as we know this url (graph.facebook.com/1700278611/picture)
redirect to this url (http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs222.ash2/48814_1700278611_949486_q.jpg) so pls help thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自由如风 2024-10-23 15:12:31

您可以将 img_url 作为 graph.facebook.com/FB_USER_ID/picture 存储在数据库中。在您的网页中,您只需使用 等 URL 即可显示图像。

您实际上并不需要知道“真实”图像 URL。事实上,如果用户删除或更改其个人资料图片,该功能最终可能会失效。因此,真实的图像 URL 可能没有优势。另一方面,Graph API 提供的符号 URL 将始终指向最新的用户图像。

You can just store img_url as graph.facebook.com/FB_USER_ID/picture in database. In your webpages, you can simply use that URL like <img src="http://graph.facebook.com/FB_USER_ID/picture" /> to display the image.

You do not really need to know the "real" image URL. In-fact, that may eventually get defunct if user delets or changes his profile image. So, real image URL may not be advantageous. On the other hand, the symbolic URL provided by graph API will always point to the latest user image.

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