Need suggestion on adding custom cloud platform from the notehub data

Hi,

I am planning to use https://thinger.io/ platform for my project.

The documentation on the following page says that it supports HTTP requests. I have checked it with postman API platform weather a HTTP request can be sent to the url. It is working.

Now I want to use Notehub to send my notecard data to thinger.io dashboard.
As far as I have understood to do that, I have to send create a route and in the url section I must mention the url as mentioned by thinger.io in the following format.

REST API + ?authorization= + Token

Is there any other important step do I need to take to send JSON data? Note: I will transform the data to JSONata expression.

Hi @ujur007,

According to the Thinger docs, you can either include the auth token in the URL of your Notehub route (per their example):

https://trincado.do.thinger.io/v3/users/jt/devices/Example_Device/callback/data?authorization=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJEZXZpY2VDYWxsYmFja19FeGFtcGxlX0RldmljZSIsInVzciI6Imp0In0.RhNQsRz-Ngu7_KPMJxUikPzEvPck1VeZjwUN4YuyhfQ

…or you can include it in an HTTP header, which I think will end up looking like this in your Notehub route:

I’d try both and let us know how it works out!

Rob

Hi Rob,
exactly, I have done the same thing hence the code should work once I run it on arduino platform.
Thanks for your support!
I would also let us know weather and how it has worked.

Ujjval.

1 Like

I tried a simple code to send a request. The code is working and connecting to thinger.io

1 Like

This is a simple dashboard which logs the temprature of the notecard every one minute.

2 Likes