gpt4 book ai didi

mobile - Google API OAuth 2.0 Titanium : Required parameter is missing: response_type

转载 作者:行者123 更新时间:2023-12-01 15:21:39 24 4
gpt4 key购买 nike

我正在尝试在 Titanium 应用程序中从 Google 获取 access_token 以访问 Google+ API。
我已经在 Google API Console 注册了一个 Android Oauth2.0 客户端
所以我有一个客户端 ID 和几个由 Google 生成的重定向 uri:["urn:ietf:wg:oauth:2.0:oob","http://localhost"]。
我正在尝试遵循授权代码流程,因此我使用以下参数作为查询字符串向端点“https://accounts.google.com/o/oauth2/v2/auth”发出授权请求:

client_id = encodeURI(<app id>)
redirect_uri = encodeURI("urn:ietf:wg:oauth:2.0:oob")
response_type = "code",
state = <random generated number>
scope = "https://www.googleapis.com/auth/plus.me"
然后我创建一个 webview 并使用附加查询字符串重定向到授权端点。谷歌登录屏幕打开,我可以登录并授予对应用程序的访问权限。作为返回,我得到一个嵌入了授权代码的 url,我可以提取它以用于下一次调用。
为了获得 access_token,我向“https://accounts.google.com/o/oauth2/v2/auth”端点发出 POST 请求。这是函数:
function getAccessToken(code) {

Ti.API.warn("Authorization code: " + code);

var auth_data = {
code : code,
client_id : client_id,
redirect_uri : redirect_uri,
grant_type : "authorization_code",
};


var client = Ti.Network.createHTTPClient({

onload: function() {
var response_data = JSON.parse(this.responseText);
var access_token = response_data["access_token"];
var expires_in = response_data["expires_in"];
},


onerror: function() {
Ti.API.error("HTTPClient: an error occurred.");
Ti.API.error(this.responseText);
}

});

var body = "";

for (var key in auth_data) {
if (body.length) {
body += "&";
}
body += key + "=";
body += encodeURIComponent(auth_data[key]);
}

client.open("POST", "https://accounts.google.com/o/oauth2/v2/auth");
client.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
client.send(body);


}
但是我得到了 400 的状态代码,并显示以下消息:“缺少必需的参数:response_type”。
我不知道为什么我会得到这个,因为来自 OAuth 2.0 specification访问 token 请求所需的参数只是grant_type、code、client_id 和redirect_uri。我还尝试添加 response_type = "token"但如果我理解正确,那应该是用于隐式流。
有什么建议吗?

最佳答案

似乎我发现了问题, token 交换的端点不正确。
应该是“https://accounts.google.com/o/oauth2/token”,至少这个对我有用。

我要指出的是,在 Google 的最新文档中, token 交换的端点是这样的:“https://accounts.google.com/o/oauth2/v2/token”,但由于某种原因它对我不起作用(响应说服务器不支持该 url )。希望这可以帮助有类似问题的人。

关于mobile - Google API OAuth 2.0 Titanium : Required parameter is missing: response_type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38835222/

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