有谁在他们的快速入门中得到了榜样?他们提供了NodeJS代码以连接到其MQTT桥,但是对我来说,它不起作用:
[root@centos7 google-iot-mqtt]# node cloudiot_mqtt_example_nodejs.js \
> --project_id=curious-furnace-181313 \
> --registry_id=my-registry \
> --device_id=mimic1 \
> --private_key_file=./rsa_private.pem \
> --algorithm=RS256
Google Cloud IoT Core MQTT example.
connect { '0': {},
'1':
{ [Function: require]
resolve: [Function: resolve],
main:
Module {
id: '.',
exports: {},
parent: null,
filename: '/home/tmp/uwe/google-iot-mqtt/cloudiot_mqtt_example_nodejs.js',
loaded: true,
children: [Object],
paths: [Object] },
(成千上万的堆栈跟踪行),并且Google IoT核心版信息中心中没有任何活动,也没有任何请求订阅中的任何消息。
mosquitto_pub返回一个奇怪的错误:
% ./mosquitto_pub -d -h mqtt.googleapis.com -p 8883 -i projects/curious-furnace-181313/locations/us-central1/registries/my-registry/devices/mimic1 -u unused --key ~/mimic/scripts/mqtt/google-iot/rsa_private.pem --cert ~/mimic/scripts/mqtt/google-iot/rsa_cert.pem -t /devices/mimic1/events -m hello --insecure
Client projects/curious-furnace-181313/locations/us-central1/registries/my-registry/devices/mimic1 sending CONNECT
Error: Unrecognised command 16
Error: A network protocol error occurred when communicating with the broker.
显然,他们的NODEJS应用程序生成的消息花了一些时间才能订阅。但是mosquitto_pub仍然不起作用。
—
Gambit支持
使用由其NODEJS应用程序创建的JWT密码向mosquitto_pub添加-P参数无济于事。
—
Gambit支持