Instagram auth api需要有效的重定向URI。
但我想像这样使用重定向uri
http://myhost/{userId}/mypath
这个uri无法修改。
{userId}
是可变的。
是否可以使用带有变量uri的重定向uri?
答案 0 :(得分:0)
您可以将user-id
作为url param传递,然后在重定向后构建实际的uri。
在Instagram中设置redirect_uri
:
http://myhost/user
使用这样的redirect_uri
登录:
http://myhost/user?userid={userId}
在您的服务器上,重定向到上面的网址:
http://myhost/{userId}/mypath