Send existing geolocation data from cloud server to Live Objects - rest

I currently have a running instance in Google Cloud which stores geolocation data from an IoT device. I wanted to connect my Google Cloud server to Live Objects so that these geolocation data can be used. Is there a way to connect Google Cloud and Live Objects together, to share data? Or is there a way to send a post request from an external server script (Node.js) to Live Objects without using MQTT? The post request is just a normal HTTP post. The HTTP post will be sent using REST API.
Thanks in advance.

Yes you can push data in Live Objects by using HTTPS REST API
check https://liveobjects.orange-business.com/swagger-ui/index.html#!/Data_management_data_store/addDataMessageUsingPOST
and example here: https://liveobjects.orange-business.com/doc/html/lo_manual.html#STREAMS
cheers

Related

Looking for a secure way to store and read json file in serverless flutter using firebase

I'm making a mobile app using flutter and firebase.
To use Cloud Messaging of firebase, I need to send server key of firebase by putting in headers and sending with http post method.
headers: {
'Authorization': server key
}
However, it is not a recommended way to use server key. Firebase recommends to download json file of service account and use that file to get JWT token from firebase. Otherwise, I have to use Admin SDK and it's difficult for us because we don't have a backend server.
Therefore, my question is that are there any good ways to store json files in client side or local environment or firebase or Azure and can read the file only when we need it.
Plus, if you know the better way to send FCM from client side, please let me know. Thank you so much for reading it.
I have to use Admin SDK and it's difficult for us because we don't
have a backend server.
You can very well use the Admin SDK with Cloud Functions for Firebase, the "serverless framework that lets you run backend code". It is very common to use Cloud Functions to send message requests to the FCM backend, which then routes messages to client apps running on users' devices.
There is actually an official example that demonstrates how to send an FCM notification from a Realtime Database triggered Function. You can adapt it to be triggered by any other available trigger mechanism.

how to get live data from REST API using guzzle

I'm new to whole live data broadcast. I'm creating a website on laravel 5.1, and I need to get live data from a REST API, and after making some changes, broadcast the result to my own users.
I'm using pusher to broadcast data to my clients. and I figured, I should use Guzzle and/or CURL to get data from API. but the part I don't understand is how to get live data from API? Is there an option in guzzle that will keep the connection open continuously,or should I create a job to execute guzzle code every few seconds?
I know we use websockets to create a persistent connection between the server and clients to broadcast live data. but how to create a persistent connection between API server and my server to transfer the data?
Thank you friends in advance, appreciate any help :)
It depends on an API that you are using. If it's an usual REST API, then there are no options to make a "live" catching. Only pull the API periodically.
You API provider might support webhooks, websockets or some other technologies for push model. Depends on a provider, as I said before.

Zebra FX7500. Using HTTP POST to send data from reader to url

I bought a zebra FX 7500 fixed rfid reader. I have connected it to my work laptop. I want to transfer the read data of the tags from the reader to a web application hosted on my localhost. The application is hosted on http://127.0.0.1:8000 using a django server. How can I POST data to a specific URL of my web app with this configuration?
You could:
Upgrade to the latest firmware ([3.10.30.0])1 which is free and use the IoT Connector service to use the HTTP POST method to send the tag data.
Buy a license for the FX7500 service "FX Connect" to use the HTTP POST method to send the tag data.
Both are done in the web GUI of the reader.
The FX7500 SDK is here: https://www.zebra.com/us/en/support-downloads/software/developer-tools/fx7500-series-sdk.html and supports applications in both C & Java. You would need to write an application in one of those two lanaguages to post the received data to your web app.

Google Play Game Services REST api Snapshot load/commit

Anyone know if it is possible to load/commit snapshot through the Google Play Game Services REST api?
Im using this documentation: https://developers.google.com/games/services/web/api/snapshots
But it only seems to allow fetching Snapshots metadata.
Thanks.
One of the fields of the metadata is driveId. This is the id to pass to the Drive API to read the data. See https://developers.google.com/drive/v2/reference/files/get for the API information for get.

how to fetch new messages without overloading server in php?

which technology is being used in Google or Facebook chat applications to fetch new messages from server without overloading server with continuous servers queries using Ajax calls ?
Facebook and Gmail might be using Real time messaging protocol for instant messaging.
Please refer this page to read more about RTMP
wikipedia.org/wiki/Real_Time_Messaging_Protocol