ofxJSON
ofxJSON copied to clipboard
A wrapper for jsoncpp for openFrameworks
I was looking at openRemote and it looks like it can only handle GET requests. https://github.com/jefftimesten/ofxJSON/blob/master/src/ofxJSONElement.cpp#L70 I was wondering if its possible to use this for POSTs as well? -cheers,...
Hi, I read this forum post : https://forum.openframeworks.cc/t/create-your-own-json-data-and-save-json-file/16560 And tried to reproduce the example with ofxJSON. But when I use an ofxJsonElement as value for another OfxJsonElement, it compiles fine,...
UTF-8
Hi, Should this work with UTF-8 encoded files? If I try to open a file using json.open("file.json") that is UTF-8 encoded I get the following error: > ofxJSONElement::openLocal: Unable to...
do you have any sample for updating json value?
usage: ``` ofxJSON json; json["Rect"] = ofxJSON :: Convert( ofRectangle(100, 200, 300, 400) ); ``` --- ``` { "Rect"{ "x" : 100 , "y" : 200 , "width" : 300...