gpt4 book ai didi

javascript - 使用 hello.js 登录 Instagram

转载 作者:行者123 更新时间:2023-12-02 20:08:15 25 4
gpt4 key购买 nike

我尝试使用 hello.js 登录 Instagram,但它从未定向到 https://api.instagram.com/oauth/authorize ,否则它会立即定向到我的重定向网址,因此我无法获取访问 token 。这是我的代码:

    hello('instagram').login({redirect_uri : instagram_redirect_url, 
scope: 'basic, publish'}, function(e){
if(e.error){

}else{
var instagram_access_token =
hello('instagram').getAuthResponse().oauth_token;
var instagram_secret =
hello('instagram').getAuthResponse().oauth_token_secret;
console.log(instagram_access_token);
console.log(instagram_secret);
}
});
hello.init ({
instagram: instagram_client_id
});

最佳答案

我发现我必须将 response_type 更改为 token:

hello.init(
{
instagram: INSTAGRAM_ID
},
{
redirect_uri: helloOAuthCallback,
popup : {
location: 'no'
},
oauth_proxy : oauthproxy_url,
response_type: 'token'
}
);

现在它对我有用。

关于javascript - 使用 hello.js 登录 Instagram,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45469467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com