Questions tagged [google-cloud-iot]

Google Cloud IoT Core is a fully managed service to easily and securely connect, manage, and ingest data from globally dispersed devices.

Google Cloud IoT Core is a fully managed service to easily and securely connect, manage, and ingest data from globally dispersed devices.

  • Connect all devices and gateways to Google Cloud Platform over standard protocols, such as MQTT, HTTP, through the protocol endpoints and manage all your devices as a single global system.
  • Enable end-to-end security using asymmetric key authentication over TLS 1.2; CA signed certificates can be used to verify device ownership.
  • Use REST APIs to automatically manage the registration, deployment, and operation of devices at scale. Also, use the APIs to retrieve and update device properties and state even when the devices are not connected.
215 questions
0
votes
1 answer

Add Topics to a registry with Python API

I need some help with the Google IoT Core API for Python... For now I'm able to create and delete a registry as needed but, I need to also edit the registry to add more topics to it. I researched a lot the documentation but no luck, maybe someone…
Juan Quintero
  • 53
  • 1
  • 10
0
votes
2 answers

GCP IoT Error on sending new device configuration: "Error 413 (Request Entity Too Large)!!"

I'm trying to send my GCP IoT device a new configuration. The Base64-encoded binary string is approximately 15k bytes in length. GCP IoT device config size limit is 64k according to the docs. But I'm still getting a 413 (request entity too large)…
Carl Rossman
  • 383
  • 1
  • 4
  • 10
0
votes
2 answers

google cloud iot core certificates

I am confused with the certificated associated with the google cloud iot core. which CA certificate is used at the registry level and how to generate it. And the "roots.pem" certificate used to communicate between device and cloud iot core using…
0
votes
2 answers

How to susbcribe to a telemetry events using MQTT and using C code?

How to susbcribe to a telemetry events using MQTT and using C code? (this is a microcontroller code) I can send data to a specified topic but when I trying to subscribe to this topic I got error message This is the message from the log …
jsmith
  • 127
  • 2
  • 13
0
votes
0 answers

How to correctly create signed certificates for registry and device in Google IoT?

I have a project based on Google Cloud Platform which involves adding Raspberry Pi devices to Google IoT registry. What I need to do is to generate signed certificates both for registry and for devices in order to ensure that fraudulent devices are…
0
votes
2 answers

Google Cloud IoT core JWT expiration is actually 24 hours?

Currently I'm programming my device as part of an IoT project with Google Cloud services. Almost everything is working, but not all. I edited the original MQTT library for Python and it started to work correctly if I set the JWT token expiration to…
0
votes
2 answers

Digitally signing a device public key with CA certificate

I'm trying to register an IoT device with Google Cloud IoT Core, and I'm having issues signing the device public key with a CA certificate installed on Google Cloud (device registry). Following are Google's requirements: CA and device certificates…
0
votes
2 answers

Google Cloud IoT Core Device registration- can multiple devices use the same Public/Private Key

I am working on an in house project with several sensor devices. I do not want a user to register each and every device individually. In the sense I want to use the same Public/Private Key pair for all devices registering to a registry but be able…
0
votes
1 answer

How to delete data from database that has been published to the cloud?

I am generating dummy data in the database and then publishing to cloud. As soon as it is published, I want to delete that entry from the database. I understand that I need to send the 'mid' value in the publish method then call deleteFromDb()…
Ishita Roy
  • 25
  • 5
0
votes
1 answer

Google IoT Registry Topic with multiple subfolder levels

Hi everyone Im having the following issue with Google Cloud IoT specificly with the Registry Creation and subfolders: I have a device with exactly 19 values to send and all are important now google let me create a registry with upto…
Juan Quintero
  • 53
  • 1
  • 10
0
votes
2 answers

Is it possible to connect to the Google IOTCore via JavaScript in browser

AWS IoT supports this via userPools, how this can be done via Google Cloud messaging? -Thanks
0
votes
1 answer

Google IOT - What is the max limit of Device telemetry publishes per project

As per Google IOT docs, Rate limits of "Device telemetry publishes per project" is "Unlimited, but the default is 60,000 per min" and can be increased. Is there a max limit to which this can be increased? Similarly what is the max limit for "Device…
Shobhana Sriram
  • 394
  • 1
  • 2
  • 14
0
votes
1 answer

ERROR: (gcloud.iot.devices.create) PERMISSION_DENIED

I keep getting permission denied when trying to do gcloud commands gcloud iot devices create 'aq-rpi' --project='aqmon' --region='us-central1' --registry='aqmon' --public-key path=rsa_cert.pem,type=rs256 ERROR: (gcloud.iot.devices.create)…
blueether
  • 3,666
  • 4
  • 26
  • 32
0
votes
1 answer

GCP - IOT Core Monitoring messages

I'm kind of new on IOT world and trying to learn a bit about GCP products. Ive made a simples python app that uses PAHO to send a message to an IOT topic (IOT Core in GCP). Everything, apparently, works just fine. But I was wondering if I could see,…
kPiroto
  • 13
  • 3
0
votes
0 answers

Google Firebase functions to iot device send config

I am trying to use firebase functions to send config to an Iot device.Here is the tutorial which i am trying to use.This is the Node js code which i am deploying The tutorial says after, after deployment whatever change i will do to my firebase…