-
Notifications
You must be signed in to change notification settings - Fork 636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested JSON key data pairs #8
Comments
@peterstedman One way to send your JSON will be to construct it by yourself and use this Update api. Remember to add a Client Token to the JSON document created. This will help the SDK to track the Thanks for using the SDK. Please let us know if you need more information. Bhadri |
Just to add to this, we have actually replaced jsmn with yajl internally, allowing much more control over building the json structures etc ... |
Hi @peterstedman, Rahul |
Hi Rahul, Thanks for keeping us in mind with this. I will take a look when I can, Peter On Fri, Nov 18, 2016 at 7:36 PM, Rahul Singh Chauhan <
Peter Stedman, Scout Alarm |
Would also be interested in this if it doesn't blow memory usage out of the water :) |
…ializer Support infinite length containers in tinycbor decoder
I'm using the Embedded C SDK for our application and am having an issue writing shadow JSONs. I want to be able to nest key / data pairs but I don't think the SDK supports it.
This is an example of what I want to write:
"rfids" : {
"160035E055" : {
"active" : false
},
"160073640A" : {
"active" : false
}
},
But I can't see a way that the SDK's APIs will let me do this. Is that correct?
The text was updated successfully, but these errors were encountered: