The most recent content from our members.
I am able to run this code fine from a client-side app: $.ajaxSetup({ beforeSend: function(xhr, settings) { xhr.setRequestHeader('Authorization', "Bearer " + myAccessToken); } }); $.ajax(myURL, { dataType: 'json', type: 'get', success: function(data, status) { dataReturned1(data); }, error: function(xhr, status, error) {…
It looks like you're new here. Sign in or register to get started.