Questions tagged «gdata»

14
未收到Google OAuth刷新令牌
我想从Google获取访问令牌。 Google API表示要获取访问令牌,请将代码和其他参数发送到令牌生成页面,并且响应将是一个JSON对象,例如: { "access_token" : "ya29.AHES6ZTtm7SuokEB-RGtbBty9IIlNiP9-eNMMQKtXdMP3sfjL1Fc", "token_type" : "Bearer", "expires_in" : 3600, "refresh_token" : "1/HKSmLFXzqP0leUihZp2xUt3-5wkU7Gmu2Os_eBnzw74" } 但是,我没有收到刷新令牌。我的回答是: { "access_token" : "ya29.sddsdsdsdsds_h9v_nF0IR7XcwDK8XFB2EbvtxmgvB-4oZ8oU", "token_type" : "Bearer", "expires_in" : 3600 }

30
Android java.lang.VerifyError?
在我的Android应用中,我总是会收到VerifyErrors!我不知道为什么。每当我包含一个外部JAR时,当我尝试启动我的应用程序时总是会收到VerifyErrors(除了一次,当我包含Apache Log4j时)。 通常,我会通过获取库的源代码并将其添加到我的项目中来解决此问题,但是我正在尝试放置GData客户端库。 我可以在源代码中获得它,但它不能依赖(mail.jar,activation.jar,servlet-api.jar),因此会出现验证错误。我想一劳永逸地解决这个问题。我在互联网上看过,但他们似乎都在谈论不完整的课程文件?我不知道。

9
获取刷新令牌Google API
我的代码无法获得刷新令牌。我只能获取访问令牌,令牌类型等,我已经按照一些教程进行了操作,例如access_type=offline输入登录URL: echo "<a href='https://accounts.google.com/o/oauth2/auth?" . "access_type=offline&client_id=123345555.apps.googleusercontent.com& " . "scope=https://www.googleapis.com/auth/calendar+https://www.googleapis.com/auth/plus.me&response_type=code& " . "redirect_uri=http://www.sample.com/sample.php&state=/profile'>Google</a>"; 我获取访问令牌的字段: $fields=array( 'code'=> urlencode($authcode), 'client_id'=> urlencode($clientid), 'client_secret'=> urlencode($clientsecret), 'redirect_uri'=> urlencode($redirecturi), 'grant_type'=> 'authorization_code', ); 但我无法获取refresh_token,只有access_token,token_type,id_token和expires_in。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.