我想生成用于生成身份验证令牌的代码,但无法获取用于获取代码的重定向网址

时间:2018-09-01 10:21:22

标签: google-api request

我想生成用于生成身份验证令牌的代码,但是我没有获得用于获取代码的重定向url:

我的网址是:

https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri= URLREDIRECTING &client_id = clientId

通过此url,我得到的URL的代码值可用,但是当我使用请求包时,它没有提供所需的url。

我的代码如下:

 public async tokenCodegenration(url)  {
        const self = this;
        return new Promise((resolve, reject) => {
            const Url = url; // Contains required URL
            request({ url: Url, json: true }, function (error, response, body) {
                if (response) {
                    console.log(response.request.uri.href);

                }
            })
    })
}

我已经登录了我的帐户,因此应该将其重定向到该网址。

当我通过浏览器访问该URL时,它将重定向所需的URL

0 个答案:

没有答案