3

您好我正在开发一个处理产品的应用程序,我想使用 Android 助手改善用户体验。

我阅读了 Google 的文档并首先尝试使用以下代码:

@Override
public void onProvideAssistContent(AssistContent assistContent) {
super.onProvideAssistContent(assistContent);

 String structuredJson = new JSONObject()
   .put("@type", "MusicRecording")
   .put("@id", "https://example.com/music/recording")
   .put("name", "Album Title")
   .toString();
 assistContent.setStructuredData(structuredJson);
}

该代码被调用,但没有增加谷歌助手抓取当前视图的正常体验。我还尝试使用产品架构(schema.org)(使用@product、@brand、@review ...),因为我认为问题是 json 对象在 google 搜索中没有给出任何结果。但是这个新的 json 什么也没出现。

当我认为问题在于 json 在 Google 搜索中没有定论或者我忘了做更多事情时,我错了吗?

谢谢

4

1 回答 1

0

关于Google Assistant,因为它是一个Assistant,所以它会在向用户推荐结果之前做更多的计算。这意味着您分享的内容将是 Google Assistant 学习的数据,Google Assistant 会用它做一些事情,只是 Google 知道,这不是一个像if else条件这样的明确概念。另外,您可以关注对此的评论我认为这会有所帮助。

于 2017-12-21T07:49:40.167 回答