JSFiddle - React, Tailwind, and code Playground
by sffriend
JavaScript
$("document").ready(function() {
var access_token = "0/2f30c203fd033212e2bf64893b20a3b7";
//var id = window.location.href.search.split("=");
var id = '262721230187604';
//id 262721230187604
$.ajax({
url : 'https://app.asana.com/api/1.0/projects/' + id,
dataType : 'JSON',
type: 'GET',
beforeSend: function (xhr) {
xhr.setRequestHeader("Authorization", "Bearer " + access_token)
}
}).done(function(response) {
console.log(response.data);
});
});