Instagram基本显示API连接错误

问题描述 投票:0回答:1

我正在尝试构建一个简单的应用程序以获取用户最新的instagram帖子。我遵循了所有Facebook 'Get Started'指南,并使用以下URL连接到Instagram授权窗口:“https://api.instagram.com/oauth/authorize?client_id={在此插入我的客户ID}&redirect_uri = https://localhost:3000/handleAuth&scope=user_profile,user_media&response_type=code

无论我做什么,我都能从Instagram得到的唯一答复是:

{“ error_type”:“ OAuthException”,“ code”:400,“ error_message”:“您必须包含有效的client_id,response_type和redirect_uri参数”}

有人在这个问题上有经验吗?有什么想法我做错了吗?

instagram instagram-api instagram-graph-api
1个回答
0
投票

原来使用授权窗口的URL,因为表单操作URL由于某些原因不起作用。我已经切换到使用window.location.href =(授权窗口URL)的函数,该函数现在可以使用。

© www.soinside.com 2019 - 2024. All rights reserved.