Instagram API,使用客户端凭据而不是用户访问令牌获取 instagram 图像

Instagram API, fetching instagram images with client credentials instead of users access tokens

我需要在我的网站上显示我的 Instagram 企业帐户中的图片。我只需要最后 5 张图片。我不需要其他 Instagram 帐户和访问令牌(我想与我的用户一起提取图像)。

根据文档: https://developers.facebook.com/docs/instagram-api#instagram-graph-api

知道如何在我的网站上未经 Instagram 授权 window 从 Instagram 提取图像吗? 是否可以使用客户端凭据流创建访问令牌?

使用带有访问令牌的 OAuth 是从 Instagram 提取内容的唯一方法。 Instagram 没有 public API - 如果没有授权,它将是 public API.

您需要的是 back-end 服务。由于您只是获取自己的数据,因此生成访问令牌并将它们存储在服务器端——一次性事件。创建一个端点以获取最后 5 个帖子,并 server-side 使用访问令牌进行 Instagram API 调用。 front-end 将调用您的新端点并显示帖子。

另一种选择是付费社交媒体聚合器。