我的目标是设置现有用户的个人资料图片的网址。
我在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.
很难找到这个库的文档。如果有人可以告诉我我在那里失踪的东西,我会很高兴。