Gitkit Java - 更新照片网址

时间:2016-04-16 14:30:07

标签: java google-app-engine google-identity-toolkit

我的目标是设置现有用户的个人资料图片的网址。 我在Google Identity Toolkit上使用App Engine Java库。 以下是我的代码:

GitkitUser u = gitkitClient.getUserByLocalId(localId);
u.setPhotoUrl(profilePictureURL);
gitkitClient.updateUser(u);

其中gitkitClient' is my GitKit client, already initialized with the right parameters, and localId'是我想要更新的用户的ID。

此代码导致以下异常:

org.json.JSONException: JSONObject["localId"] not found.

很难找到这个库的文档。如果有人可以告诉我我在那里失踪的东西,我会很高兴。

1 个答案:

答案 0 :(得分:1)

感谢您报告错误。它将在一两天内修复。

[更新]已修复。我手动测试并验证。还请使用最新版本的java库。您可以从here或maven update。

获取