您好我需要从目标C获得谷歌驱动器的读写授权,我已经拥有访问令牌。
借助Google API Client Library for Java,我可以使用现有的访问令牌进行理论化,例如代码如下:
GoogleCredential credential = new GoogleCredential().setAccessToken(accessToken);
Plus plus = new Plus.builder(new NetHttpTransport(), JacksonFactory.getDefaultInstance(), credential)
.setApplicationName("Google-PlusSample/1.0")
.build();
有人知道在目标C中是否有可能???
或必要的是我为请求授权做了所有处理????(https://developers.google.com/drive/ios/auth)。
另外我想知道是否可以在谷歌驱动器中创建,更新或删除文件,但使用REST请求????,谢谢。
问候。