在Raspberry pi Zero W上安装Google Assistant

时间:2018-09-17 21:59:50

标签: raspberry-pi google-assistant-sdk

我只是尝试在当前日期在树莓派上安装google助手,从开始到测试都遵循Google的Assistant SDK程序,但是使用的是最终命令,即googlesamples-assistant-pushtotalk --project-id my-dev-project --device-model-id my-model

我正在输出:

INFO:root:Connecting to embeddedassistant.googleapis.com
WARNING:root:Device config not found: [Errno 2] No such file or directory: '/home/pi/.config/googlesamples-assistant/device_config.json'
INFO:root:Registering device
ERROR:root:Failed to register device: {
  "error": {
    "code": 400,
    "message": "Could not create the device instance. Project_id from side channel and project_id from url do not match.",
    "status": "INVALID_ARGUMENT"
  }
}

那是什么问题?请帮忙!

Error Screenshot here

1 个答案:

答案 0 :(得分:0)

根据错误消息,看来您在命令行中提供的--project-id与登录时使用的项目的ID不同。

setup the project时,需要创建设备模型,然后下载client_secrets文件。然后,您将使用google-oauthlib-tool来交换客户端密钥以获得用户凭据。

用于创建设备模型的项目ID必须与参数中提供的项目ID相同。