Skip to content

Instantly share code, notes, and snippets.

@jbrunemann
Created December 24, 2013 10:42
Show Gist options
  • Save jbrunemann/8111521 to your computer and use it in GitHub Desktop.
Save jbrunemann/8111521 to your computer and use it in GitHub Desktop.
var variables = {
username: "username",
password: "password"
};
var jsonString = JSON.stringify(variables);
jQuery.post(
"https://sandbox.api.cso20.net/v1/jobapi/getApiKey.json",
{args: jsonString},
function (data) {console.log(data);}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment