This project is abandoned. I would suggest something like.. getcloudkit.com or OpenKeyval. thxx! ~paul irish. 2011.10.20
JSON-P DB utilizes Google App Engine's datastore in order to provide a persistent warehouse for arbitrary JSON objects that are made easily accessible from client-side javascript code via JSON-P.
http://jsonpdb.appspot.com/add?myFoo={"foo":"bar","baz":9}&callback=func
Response: func('agNpZWRyDQsSB2NvbnRhY3QYAQw'); (item key is unique to this object)
http://jsonpdb.appspot.com/get?myFoo=agNpZWRyDQsSB2NvbnRhY3QYAQw&callback=func
Response: func({"foo":"bar","baz":9});
Pass an empty object.
http://jsonpdb.appspot.com/get?storeKey={}&callback=callbackFunc Example:http://jsonpdb.appspot.com/get?myFoo={}&callback=func
Response: func([{"foo":"bar","baz":9},{"foo":"bar2","baz":10}]);
Pass an object that to match against.
http://jsonpdb.appspot.com/get?storeKey=jsonObjToMatch&callback=callbackFunc Examplehttp://jsonpdb.appspot.com/get?myFoo={"foo":"bar2"}&callback=func
Response: func([{"foo":"bar2","baz":10}]);
Create an object | |
Store your object: | |
Response: |
|
Retrieve your object by key: | |
Response: | |
Retrieve all objects of a specific type: | |
Response: |
|
Retrieve based on criteria: | |
Response: |
View the contents of: