Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

ajax get request

$.ajax({
        url: "https://app.asana.com/-/api/0.1/workspaces/",
        type: 'GET',
        dataType: 'json', // added data type
        success: function(res) {
            console.log(res);
            alert(res);
        }
    });
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #ajax #request
ADD COMMENT
Topic
Name
1+9 =