我有一个带有 GAE 服务器的 Android 应用程序。我尝试按照developers.google.com 上的说明对用户进行身份验证,将用户参数添加到端点方法等。我得到一个不为空的用户,但此方法getUserId()返回空。它类似于这个,相当老的问题: Cloud endpoint api 中的 Function User.getUserId() 为非 null 的用户对象返回 null 但我仍然不知道如何解决它。你如何处理这个错误?你有没有遇到过?
在android客户端中,这是我所做的(简化):
credentials = GoogleAccountCredential.usingAudience(getApplicationContext(), "server:client_id:" + WEB_CLIENT_ID);
credentials.setSelectedAccountName(accountName);
WarriorEntityEndpoint.Builder endpointBuilder = new WarriorEntityEndpoint.Builder(AndroidHttp.newCompatibleTransport(), new GsonFactory(), credentials);
warriorEntityEndpoint = endpointBuilder.build();
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
// TODO Auto-generated method stub
try {
warriorEntityEndpoint.getWarrior().execute();
} catch (Exception e) {
}
return null;
}
}.execute();
在 GAE 上:
@Api(name = "warriorEntityEndpoint", namespace = @ApiNamespace(ownerDomain = "szpyt.com", ownerName = "szpyt.com", packagePath = "mmorpg.monsters"),
version = "version1",
scopes = {"https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile"},
clientIds = {Constants.ANDROID_CLIENT_ID, Constants.WEB_CLIENT_ID},
audiences = {Constants.ANDROID_AUDIENCE})
public class WarriorEntityEndpoint {
private static final Logger log = Logger.getLogger(WarriorEntityEndpoint.class.getName());
@ApiMethod(name = "getWarrior")
public WarriorEntity getWarrior(User user) throws OAuthRequestException, IOException {
log.log(Level.SEVERE, "this gives correct email: " + user.getEmail());
log.log(Level.SEVERE, "this is null: " + user.getUserId());
我还有另一个非常重要的问题:如果 getMail() 给了我正确的帐户,但 getUserId() 给了 null,这个用户是否经过身份验证?我读到如果用户对象没有经过身份验证,它应该为空,但我不再确定......我正在使用 App engine SDK 1.8.7。我正在部署到 GAE 的真实设备和后端上进行测试。