我正在使用以下代码(来自 sdk 示例“Hackbook”)在上传照片后为其添加标签。
json = Util.parseJson(response);
photo_id = json.getString("id");
String relativePath = photo_id + "/tags/" + Utility.userUID;
Bundle params = new Bundle();
params.putString("x", "25");
params.putString("y", "25");
Utility.mAsyncRunner.request(relativePath, params, "POST", new TagPhotoRequestListener(), null);
但是,我有时(并非总是)收到来自 facebook 的响应为“false”而不是“true”。这有什么具体原因吗?
此外,有没有办法在上传照片时标记照片,而不是拨打额外的电话?