{“ error_type”:“ OAuthException”,“ code”:400,“ error_message”:“ Invalid redirect_uri”}

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

首先,这是登录后我的Instagram URL:

https://www.instagram.com/oauth/authorize?client_id=$MYCLİENTİD&redirect_uri=https://localhost:4000/İnstagram/Insta.php/&response_type=code&scope=user_profile,user_media

这是页面显示给我的错误:

{“ error_type”:“ OAuthException”,“ code”:400,“ error_message”:“无效的redirect_uri”}

[当我尝试从Instagram获取用户令牌时,出现该错误。我试图更改redirect_uri=(Valid OAuth Redirect URIs),但错误与以前相同。

php api instagram
1个回答
1
投票

我在任何地方都找不到此文档,但是通过反复试验,我发现redirect_uri必须:

  1. 使用https
  2. 可公开访问(例如,本地主机并指定端口号无效)
  3. 不包括参数(我发现它们被剥夺了,这在以后我请求访问令牌时会导致redirect_uri不匹配)
© www.soinside.com 2019 - 2024. All rights reserved.