我正在使用 Google Plus API。我想创建一个基本应用程序,使用服务器端进程将用户详细信息存储到我的数据库中:
https://developers.google.com/+/web/signin/server-side-flow
我目前正在执行第 6 步。我的按钮出现在页面上,我可以code
使用 ajax 将 (id) 发送到服务器。就像是:
var dataString = 'auth= ' +authResult['code'];
// Send the code to the server
$.ajax({
type: 'POST',
url: 'storeToken',
dataType: 'html',
data: dataString,
processData: false,
statusCode: {
200: function(result){
$('#test').html(result);
if (result['profile'] && result['people']){
$('#test').html('Hello ' + result['profile']['displayName'] + '. You successfully made a server side call to people.get and people.list');
} else {
$('#test').html('Failed to make a server-side call. Check your configuration and console.');
}
}
},
});
现在在文档中,它说我应该将其转换code
为 access_token 和 refresh_token - 但这是我似乎无法做的部分......
在我的 ajax 发布到的地方,我可以使用从上面的脚本成功传递的 $code。我试过了:
$client = new Google_Client();
$client->authenticate($code);
但从这里开始,我不知道该怎么办。文档在它可以使用的响应中提到:result['profile']['displayName']
但是,我不知道它是如何工作的。