我试图用Java应用程序验证谷歌云存储。我已经可以在google上使用oauth 2获得一个令牌。我试过研究,但似乎找不到任何答案。
断然的
基本上,我所要做的就是在Java类中添加范围,而不是在JSON文件中添加作用域。看错了地方。用下面的代码段附加它
/** OAuth 2.0 scopes. */ private static final List<String> SCOPES = Arrays.asList( "https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/devstorage.full_control", "https://www.googleapis.com/auth/cloud-platform");