Welcome To Snipplr
Everyone's Recent Snippets Tagged json
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
saveToStorage("objectName", {javascript:"object"});
To get the object use getFromStorage("objectName");
If the object does not exist, the function returns new empty object;
0
842
posted 10 years ago by burnandbass
This snippet of code, illustrates how to put, remove or accumulate values in a JSONObject object, use of JSONWriter for putting key/value pairs in "quick and convenient way" as stated by official documentation, and more practical uses for org.json b...
0
1056
posted 10 years ago by prgrmmraben
This code demonstrates how to create and parse the JSON data format of using array of PHP. It's a very simple code, that allows you to perform this task.
0
1079
posted 10 years ago by apphp-snippets
A sample JSON representation of an Esri Web map based on the [ExportWebMap specifications](
http://resources.arcgis.com/en/help/rest/apiref/exportwebmap_spec.html)
The JSON is a parameter to be input into the [Export Web Map task](
http://sample...
0
1293
posted 11 years ago by azmi
This can load live map JSON data from Expression Engine Database Locations Entry.
0
1020
posted 11 years ago by darith
Makes working with JSON data, in my eyes, easier in Python.
Instead of
json_data['key']['key']['key']
Do
json_data.key.key.key
This can also be modified to work the same way with dict types.
1
866
posted 11 years ago by plainwreck
This is a public jsonp api. I use it with jQuery Like This:
$.getJSON("http://yourdomain/yourpath/jsonp_api.php?method=getSchema¶ms=your_db_name&jsoncallback=?",
function(data){
//DO SOMETHING WITH THE DATA HERE
}...
1
1089
posted 12 years ago by halk
Any valid json object will be recursively traversed building a nested unordered list of its properties and their values. This example parses the json entered in the text area into an object that is passed to the json_tree() function. I use the twit...
0
1101
posted 12 years ago by halk
This is a useful class which utilizes Phil Sturgeon's helpful restclient (http://getsparks.org/packages/restclient/versions/HEAD/show). Reference the URL attached for PinnacleCart API docs.
Example request URLs to get products and categories:
#...
0
1032
posted 12 years ago by crypticsoft
Allows the ability to fill City and State fields in CRM 2011 based on the value of a Zip Code field (and optionally Country).
Requires JQuery and JSON
Uses Yahoo geocode service
Originally written by Bill Caldwell ( http://dynamicscrmdenver...
1
933
posted 12 years ago by evshell18
Make your spreadsheet public to get a key like this: 0AsfENoKj1ir7dE8yR6U0aUtpdTVNM20wRlNJOhZaclG
Set it on the script and you're all done.
0
895
posted 12 years ago by Felladrin
Way to install jsontools jar. Inspired by http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
0
757
posted 12 years ago by ef
Use PHP to get JSON
1) set the PHP to the URL of the JSON
2) echo a variable with the loaded data
3) use a request via jQuery to get the variable from PHP
0
944
posted 12 years ago by inreflection7
If not have access to edit json, setting url possible is:
url: 'http://graph.facebook.com/4/?callback=getDatosUsuario'
0
868
posted 13 years ago by nicolaspar
I always have trouble preparing JSON to work nicely with as3corelib. Here's an example of what I do whenever the array I'm looking for is nested within more JSON. This really isn't for anyone other than myself.
0
755
posted 13 years ago by chrisaiv
For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib
0
2747
posted 13 years ago by adrianparr
Nothing revolutionary, just a simple implementation.
A reworking from Brian Cray's source code:
http://briancray.com/2009/08/21/tweeted-links-twitter-api-php-cache/
Note: requires creating a cache file, '/caches/twitter', relative to source.
0
913
posted 13 years ago by richardmaisano
The user id was randomized from the original one, and the oauth_token similarly mangled. It is also likely expired anyways. It is just for reference of the structure.
1
736
posted 13 years ago by Maelstrom
Note: replace "USERNAME" with your own twitter username.
This is using cycle plugin with easing which is applied after the tweets are populated.
1
1133
posted 13 years ago by crypticsoft