我有一个使用cordova的应用程序,可以在Instagram登录后检索用户照片。
在页面index.html中:
<a id="login" href="https://instagram.com/oauth/authorize/?client_id=MYCLientID&redirect_uri=http://localhost:8200/myphotos.html&response_type=token" >Log into your Instagram</a>
页面myphotos.html中的我在url中获取访问令牌然后使用它。
当我尝试在ios / android中运行它时,我得到错误 表示:
ERR_CONNECTION_REFUSED
在Instagram开发者的应用程序设置中
我设置REDIRECT_URI=http://localhost:8200/myphotos.html
答案 0 :(得分:0)
您必须使用Cordova InAppBrowser
插件来执行oauth2登录。
以下是使用示例执行oauth2登录的jquery插件,它使用cordova InAppBrowser插件:https://github.com/krisrak/jquery-cordova-oauth2