Skip to content

Instantly share code, notes, and snippets.

@madisonmay
Created October 3, 2015 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madisonmay/d74c1ed00c06045a40fa to your computer and use it in GitHub Desktop.
Save madisonmay/d74c1ed00c06045a40fa to your computer and use it in GitHub Desktop.
Indico API + jQuery
$.ajax({
url: "https://apiv2.indico.io/sentiment/batch?key=YOUR_API_KEY",
type: "POST",
data: JSON.stringify({"data": ["text", "more text"]}),
success: function (data) {
console.log(data);
}, error: function(err) {
console.log(err);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment