首先,我实际上想从旧的方式获得性别,但它说已经弃用了,我在getGender()时得到错误;它不被认可
GoogleSignInAccount acct = result.getSignInAccount();
Intent Home=new Intent(this,HomeActivity.class);
Home.putExtra("name",acct.getDisplayName());
Home.putExtra("email", acct.getEmail());
Home.putExtra("URL",acct.getPhotoUrl());
Home.putExtra("URL",acct.getGender()); // cannot resolve method
startActivity(Home);
然后我在这里搜索并且有点惊讶我无法找到关于这个People API的许多主题,但是一个流行的答案来自isabella chen:
/** Global instance of the HTTP transport. */
private static HttpTransport HTTP_TRANSPORT = AndroidHttp.newCompatibleTransport();
/** Global instance of the JSON factory. */
private static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance();
// On worker thread
GoogleAccountCredential credential =
GoogleAccountCredential.usingOAuth2(MainActivity.this, Scopes.PROFILE);
credential.setSelectedAccount(
new Account(googleSignInAccount.getEmail(), "com.google"));
People service = new People.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential)
.setApplicationName(APPLICATION_NAME /* whatever you like */)
.build();
// All the person details
Person meProfile = service.people().get("people/me").execute();
// e.g. Gender
List<Gender> genders = meProfile.getGenders();
String gender = null;
if (genders != null && genders.size() > 0) {
gender = genders.get(0).getValue();
}
我尝试重用代码,但是我在Scopes.PROFILES上遇到错误,它说错了第二类参数......,我不明白。
这是我的谷歌代码:
//Initializing google signin option
gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestScopes(new Scope(Scopes.PLUS_LOGIN))
.requestScopes(new Scope(Scopes.PROFILE))
.requestProfile()
.requestEmail()
.build();
gplus_button = (SignInButton) findViewById(R.id.sign_in_button);
gplus_button.setSize(SignInButton.SIZE_STANDARD);
gplus_button.setScopes(gso.getScopeArray());
//Initializing google api client
mGoogleApiClient = new GoogleApiClient.Builder(this)
.enableAutoManage(this /* FragmentActivity */, this /* OnConnectionFailedListener */)
.addApi(Auth.GOOGLE_SIGN_IN_API, gso)
.addApi(Plus.API)
.build();
我会使用任何有用的东西,即使是被弃用的东西,不幸的是我在两种方式都会出错。
编辑明确问题:
已弃用的方法错误:getGender(); ,无法解决方法
更新的方法:Scopes.PROFILE中的错误,android studio中的红色下划线表示错误的第二类型参数。发现&#39; java.lang.String&#39;必需的类型&#39; java.util.Collection&#39;
答案 0 :(得分:2)
我想我找到了解决方案。
我需要为Scopes.PROFILE使用集合/数组。
Collection<String> scopes = new ArrayList<>(Collections.singletonList(Scopes.PROFILE));
GoogleAccountCredential credential =
GoogleAccountCredential.usingOAuth2(MainActivity.this, scopes);
现在它奏效了。 THX
答案 1 :(得分:1)
为什么要问两个范围?删除您不需要的PLUS_LOGIN范围行。 PROFILE范围为您提供更多信息。你只需要使用它。或者您可以在同一行中询问超过1个范围,例如
(新范围(Scopes.PLUS_LOGIN),新范围(Scopes.PROFILE))