Android PlusClient writeMoment返回400响应代码

时间:2013-05-22 06:38:57

标签: android google-plus

我正在尝试使用PlusClient在Google+用户的个人资料中使用“时刻”编写位置签到。这是我初始化客户端的方式:

mPlusClient = new PlusClient.Builder(this, this, this)
        .setVisibleActivities("http://schemas.google.com/AddActivity", "http://schemas.google.com/CheckInActivity")
        .setScopes(Scopes.PLUS_LOGIN, Scopes.PLUS_PROFILE).build();

这是onConnected:

public void onConnected() {
        //Log.d(tag,"onConnected()...");
        googlePlusUserEmail = mPlusClient.getAccountName();
        Log.d(tag, "googlePlusUserEmail = " + googlePlusUserEmail);
}

调用“mPlusClient.connect();”后连接成功完成。我有+1按钮,工作正常,我还设法使用PlusShare发布用户的个人资料:

String mapLing = "https://maps.google.com/maps?q=" + myLatitude + "," + myLongitude + "&hl=en";
String description = "Hello!";
Intent shareIntent = new PlusShare.Builder()
    .setType("text/plain")
    .setText(description)
    .setContentUrl(Uri.parse(mapLing))
    .getIntent();
startActivityForResult(shareIntent, 0);

但是,如果我理解正确,我不能用PluShare“附加”图像,所以我尝试使用Moments,如下所示:

String mapLing = "https://maps.google.com/maps?q=" + myLatitude + "," + myLongitude + "&hl=en";
String description = "Hello!";
//build the item scope
ItemScope checkInLocation = new ItemScope.Builder()
        .setId(googlePlusUserId)  //do I need it?
        .setType("http://schema.org/Place")  //tried also with "Thing" instead of Place, but no luck
        .setName(mOverlays.get(index).getSnippet() + " - " + mOverlays.get(index).getTitle())
        .setUrl(mapLing)
        .setImage("http://www.mysite.com/images/icon.png")
        .setDescription(description)
        .build();

Moment moment = new Moment.Builder()
        .setType("http://schemas.google.com/CheckInActivity")
        .setTarget(checkInLocation).build();

if (mPlusClient.isConnected()) {
    Log.d(tag, "writeMoment...");
    mPlusClient.writeMoment(moment);
}

在检查this回答后,我启用了GooglePlatform的详细调试:

adb shell setprop log.tag.GooglePlusPlatform VERBOSE

不幸的是,当我尝试写下它返回此日志时:

05-22 01:08:01.908: E/Volley(3611): [29] il.a: Unexpected response code 400 for https://www.googleapis.com/plus/v1/people/me/moments/vault
05-22 01:08:01.918: D/GooglePlusPlatform(3611): Unexpected response code (400) when requesting: writeMoment
05-22 01:08:01.918: D/GooglePlusPlatform(3611): Error response: {
05-22 01:08:01.918: D/GooglePlusPlatform(3611):  "error": {
05-22 01:08:01.918: D/GooglePlusPlatform(3611):   "errors": [
05-22 01:08:01.918: D/GooglePlusPlatform(3611):    {
05-22 01:08:01.918: D/GooglePlusPlatform(3611):     "domain": "global",
05-22 01:08:01.918: D/GooglePlusPlatform(3611):     "reason": "invalid",
05-22 01:08:01.918: D/GooglePlusPlatform(3611):     "message": "Invalid Value"
05-22 01:08:01.918: D/GooglePlusPlatform(3611):    }
05-22 01:08:01.918: D/GooglePlusPlatform(3611):   ],
05-22 01:08:01.918: D/GooglePlusPlatform(3611):   "code": 400,
05-22 01:08:01.918: D/GooglePlusPlatform(3611):   "message": "Invalid Value"
05-22 01:08:01.918: D/GooglePlusPlatform(3611):  }
05-22 01:08:01.918: D/GooglePlusPlatform(3611): }

正如我在this回答中看到的,它不应该是凭据问题,因为我可以成功使用+1和PlusShare功能。我还浏览了Google文档here,特别是CheckInActivity here,但仍然没有运气。如果有人能够就响应为400的原因提出建议,那就太好了。

EDIT1:在下面的Scarygami和Lee的建议之后,我尝试使用以下代码添加最简单的时刻:

ItemScope checkInLocation = new ItemScope.Builder()
.setId("1234545")
.setName("MyName")
//.setUrl(mapLing)  //link removed              
.setImage("http://www.mysite.com/images/icon.png")
.setDescription("MyDescription")
.setType("http://schema.org/Thing")
.build();

Moment moment = new Moment.Builder()
.setType("http://schemas.google.com/AddActivity")
.setTarget(checkInLocation).build();

if (mPlusClient.isConnected()) {
    Log.d(tag, "writeMoment...");
    mPlusClient.writeMoment(moment);
    Log.d(tag, "moment.getResult() = " + moment.getResult());
}

好消息是400错误响应代码消失了:-),但是我的个人资料中没有出现任何内容:-(。我会继续处理并尽快更新...

1 个答案:

答案 0 :(得分:5)

问题是目前的目标可以包含URL或详细属性,但不能同时具有两者。如果您提供URL,Google将从schema.org标记中获取所有信息,但不允许其他属性。

因此,您必须从代码中删除.setUrl(mapLing),它才能正常运行。

或者,您可以创建一个页面,其中包含您希望包含在schema.org标记中的所有元信息,并使用该页面的URL作为目标,而不会在请求正文中添加其他信息。

这里有一个未解决的问题:https://code.google.com/p/google-plus-platform/issues/detail?id=485

此外,上次我检查了一些时刻类型需要包含一些属性才能工作。例如,CheckInActivity在请求正文中需要http://schema.org/PostalAddress和/或http://schema.org/GeoCoordinates,或者包含在目标URL标记中。遗憾的是,没有太多文档说明什么时候需要哪些字段,所以你必须在那里进行一些实验。