我正在尝试从钥匙串项中检索 oAuth 2.0 访问令牌。
myAuth = [GTMOAuth2ViewControllerTouch authForGoogleFromKeychainForName:keychainItemName
clientID:clientID
clientSecret:clientSecret];
它向 myAuth 返回一个对象,但它不包含 access_token、expires_in、token_type,而只包含 refresh_token。如果我调用 myAuth.canAuthorize 它返回是,但我不能授权任何请求。
如何使用刷新令牌取回访问令牌?
提前致谢