tags:

views:

21

answers:

1

I am performing the following AJAX call:

$(document).ready(function() {

  $.getJSON('https://sendgrid.com/api/user.stats.json',
    {
      'api_user': '[email protected]',
      'api_key': 'MYAPIKEY',
      'user': '[email protected]',
      'category': 'MY_CATEGORY'
    },
    function(response){
      alert('received response');
    }
  );

});

and I get no alert message as expected. Instead, Firebug says I get "501 Not Implemented."

Why? What do I need to do to fix this?

If I go to the URL corresponding to the AJAX call in Firebug, I get a JSON file as a download, and it contains the expected data.

One thing I've noticed is that firebug says OPTIONS instead of GET:

alt text

+1  A: 

I don't know if this is related, but generally when requesting JSON on the client to a server in a different domain you'll need to use JSONP instead of JSON due to the Same Origin Policy. Unfortunately, it doesn't appear that their API supports using JSONP -- so they must expect you to interact with their site from your server. In that case you'll need proxy methods on your server to translate the calls to their API so that the client calls are made to a server in the same domain as the page.

tvanfosson
I am pretty sure this is the problem. JSONP could be an answer.
Chad Johnson
Though, now I am realizing that making that call via the client's browser could be very unsafe, since they would have the URL (which contains private information).
Chad Johnson