我只是尝试在当前日期在树莓派上安装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"
}
}
那是什么问题?请帮忙!
答案 0 :(得分:0)
根据错误消息,看来您在命令行中提供的--project-id
与登录时使用的项目的ID不同。
setup the project时,需要创建设备模型,然后下载client_secrets文件。然后,您将使用google-oauthlib-tool
来交换客户端密钥以获得用户凭据。
用于创建设备模型的项目ID必须与参数中提供的项目ID相同。