我仍然可以使用 Instagram API v1 获取用户 Instagram 帖子列表吗? (users/self/media/recent/)

Can I still get a list of users Instagram posts using the Instagram API v1? (users/self/media/recent/)

我刚刚开始为我的公司构建一个简单的导入图像应用程序。我们有一个正常的图片上传,并希望提供从 Instagram 导入图片的能力。我已经在 Laravel 中编写了基本功能代码。用户可以使用 Instagram 进行授权,然后我成功调用了 'users/self/media/recent/',它在 SandBox 模式下返回了正确的数据。我得到了最近的帖子列表,正是我想要的。

但是查看开发者页面,https://www.instagram.com/developer/ API 将在 2020 年完全贬值。它还说明如下:

Public Content - all remaining capabilities to read public media on a user's behalf on December 11, 2018

在我看来,这听起来像是对 'users/self/media/recent/' 的调用应该已经贬值了。我只是担心我下周将这个 code/app 上线,它已经在沙盒模式之外贬值了。

抱歉,这方面的文档很难找到。在此 post 的底部指出:

After December 11, 2018, the Instagram Platform API will only support the instagram_basic permission. This can be utilized to make the API calls for the following remaining endpoints:

/users/self - Get information about the owner of the access token

/users/self/media/recent - Get the most recent media published by the owner of the access token

/media/media-id/comments - Get a list of recent comments on your media object. This is only supported for media obtained through the /users/self/media/recent endpoint

https://developers.facebook.com/blog/post/2018/10/31/instagram-graph-api-hashtag-search-launch/

所以我想这在 2020 年之前仍然有效。