jQuery Ajax POST not working with MailChimp

前端 未结 3 759
伪装坚强ぢ
伪装坚强ぢ 2021-01-02 08:59

I have the following code I am using to send data to a MailChimp Newsletter List (API v3). Everytime I remove the type: POST from the function it attempts to p

相关标签:
3条回答
  • 2021-01-02 09:43

    The main issue is what jc commented on your original post - this simply won't work due to Same Origin Policy issues. Firebug is not as vocal about why the GET call fails, but that's why it returns no data. If you watch that with the POST, you'll see Firefox doesn't even make the call. Chrome's js console on the other hand straight explains the Same Origin policy to you.

    All in all, this is a very good thing if for no other reason than it prevents you from publicly publishing your account's API Key, which is a very bad thing to do. If the reason why doesn't immediately sink in, go read through the large number of methods available in the API and then realize that all you need to access them is that API Key.

    The correct way to do this is to POST data back to your server, then make the request from there. There are several fully built PHP examples (one using jquery, even), here.

    0 讨论(0)
  • 2021-01-02 09:53
    e.preventDefault();
    data = {
      "apikey" : "667378947", 
      "id" : "90298590285", 
      "email_address" : "test@getmoxied.net", 
      "output" : "json"
    };
    

    Could be? Semicolon is important. Hehe

    0 讨论(0)
  • 2021-01-02 09:57

    There is an undocumented endpoint that uses JSONP to do cross-domain ajax requests.

    Just change 'post?' to 'post-json?' and add '&c=?' to the end of the standard url to get the JSONP endpoint. This doesn't requires the API key to be exposed on the client-side, or the creation of a server-side view.

    I wrote a jQuery plugin that uses this method, if that's useful at all

    https://github.com/scdoshi/jquery-ajaxchimp

    0 讨论(0)
提交回复
热议问题