Twitter 会删除过去的个人资料图片吗?我在开发过程中遇到了 API 限制
我正在使用 Twitter API 创建一个网站,该网站经常抓取用户的个人资料图片,并且在开发中遇到了 API 限制。 Twitter 会删除过去的个人资料图片吗?我希望只存储 url 并在每次登录时更新个人资料图片 url。
I am creating a website using the twitter API that grabs users profile pictures quite often and am hitting API limits in development. Does twitter delete past profile pictures? I would be looking to just store the url and update there profile picture url every time they login.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
历史上没有,但最近我注意到旧的 Twitter 头像停留的时间更长。您可以尝试像我在 上列出的内容我的博客。基本前提是您使用 JavaScript 将回调绑定到图像上的错误事件。当它触发时,您会动态加载用户的当前图像并在后端获取新的 URL。
Historically no but recently I've noticed old Twitter avatars sticking around longer. You might try something like I've laid out on my blog. The basic premis is you bind a callback to error event on the image with JavaScript. When it triggers you dynamically load the current image for the user and fetch the new URL on the backend.