用户在我的Android应用程序中授权。我正在发送用户'令牌和其他信息到我的服务器。在这个服务器上,我想为用户实现一些逻辑。
我想要this flow。
我按照 quickstart.php in this link步骤获取用户'服务器上的日历。
但我得到以下错误:
google oauth exception'有消息'无法json解码令牌'
出于这个原因,我尝试了this solution。 但我也犯同样的错误。因此,作为第三个选项,我自己创建了json格式,就像在this solution中一样,如下所示。
$access_token = '{
"access_token":'.$access_token.',
"token_type":"Bearer",
"expires_in":3600,
"id_token":'.$id_token.',
"refresh_token":" ",
"created":'. time() .'
}';
如您所见,我不知道如何交换刷新令牌。我搜索了如何获取刷新令牌并查看this question。并且对我的代码实施了this solution但没有任何改变。
编辑4 :我尝试在Android应用程序中获取访问令牌according to this answer并将其发送到应用服务器。我像以前一样接受了代码:
GoogleSignInAccount acct = result.getSignInAccount();
code = acct.getServerAuthCode();//sending this code to AsyncTask to get access token
我获取访问令牌的功能:
private void getAccessToken()throws GoogleAuthException, IOException{
new AsyncTask<Void, Void, String>() {
@Override
protected String doInBackground(Void... params) {
List<String> scopes = new LinkedList<String>();
scopes.add("https://www.googleapis.com/auth/calendar");
scopes.add("https://www.googleapis.com/auth/calendar.readonly");
scopes.add("https://www.googleapis.com/auth/urlshortener");
GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(transport, jsonFactory, client_id, client_secret, scopes).build();
try{
GoogleTokenResponse res = flow.newTokenRequest(code).execute();
accessToken = res.getAccessToken();
}catch(IOException e){
}
在php服务器端,我将 user-example.php 文件改为如下所示,因为我现在有了访问令牌:
$client = new Google_Client();
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setAccessType("offline");
$client->setRedirectUri($redirect_uri);
$client->addScope("https://www.googleapis.com/auth/urlshortener");
$service = new Google_Service_Urlshortener($client);
if (isset($_REQUEST['logout'])) {
unset($_SESSION['access_token']);
}
$client->setAccessToken('{"access_token":"'. $access_token .'","token_type":"Bearer","expires_in":3600,"created":'. time() .'}');
if ($client->getAccessToken() && isset($_GET['url'])) {
$url = new Google_Service_Urlshortener_Url();
$url->longUrl = $_GET['url'];
$short = $service->url->insert($url);
$_SESSION['access_token'] = $client->getAccessToken();
但现在我收到了以下错误:
致命错误:未捕获的异常&#39; Google_Service_Exception&#39;消息&#39;错误调用POST https://www.googleapis.com/urlshortener/v1/url :( 403)权限不足&#39;在第110行的C:\ wamp \ www \ google-php \ src \ Google \ Http \ REST.php
答案 0 :(得分:2)
在我开始使用GoogleAuthorizationCodeFlow获取访问令牌后,我得到了Insufficient Permission错误,就像我在OP中提到的那样。然后我尝试将日历范围添加到GoogleApiClient.Builder(this)
,但是如果我添加Auth.GOOGLE_SIGN_IN_API
,我会收到错误,因为我已将Auth.GOOGLE_SIGN_IN_API
添加到GoogleApiClient.Builder。所以这次我尝试将范围添加到GoogleSignInOptions.Builder,现在它正在运行。我能够同时获得刷新令牌和访问令牌。下面的代码解决了我的问题:
GoogleSignInOptions gso = state.getGso();
if(gso == null){
gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestScopes(new Scope("https://www.googleapis.com/auth/calendar"))
.requestIdToken(getString(R.string.server_client_id))
.requestEmail()
.requestServerAuthCode(getString(R.string.server_client_id), false)
.requestProfile()
.build();
}