Skip to content

Instantly share code, notes, and snippets.

@bob1171
Last active September 11, 2017 20:24
Show Gist options
  • Save bob1171/dc76abe50cb52b12f586549e768c8ca5 to your computer and use it in GitHub Desktop.
Save bob1171/dc76abe50cb52b12f586549e768c8ca5 to your computer and use it in GitHub Desktop.
var p = prompt('where?')
$.ajax({
type: "GET",
url: "https://api.scratch.mit.edu/users/" + p,
success: function(e) {
$.ajax({
type: "POST",
dataType: "html",
url: "/site-api/comments/user/" + p + "/add/",
data: JSON.stringify({
content: prompt('content?'),
parent_id: "",
commentee_id: ''
})
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment