Not signed in (Sign In)
The Intervals Forum is read-only
Please head to help.myintervals.com for help articles and guides. If you have any questions, please contact our support team.

API

jquery script to access api

Bottom of Page

1 to 2 of 2

  1.  
  1.  

    Hi

    I'm trying to use jquery to access the api and return data this is what I have so far:

    <script>
    $.ajax({
    type: 'GET',
    url: 'https://api.myintervals.com/me/',
    data: '{Accept: application/xml, Authorization: Basic base64encodedkey}',
    dataType: 'xml',
    success: parseXml
    });

    function parseXml(xml)
    {
    alert('I am here');
    }
    </script>

    My knowledge of javascript programming is limited any help would be greatly appreciated

    • jprado
    • Aug 9th 2010 edited @ 08/09/2010 9:55 am
     

    JavaScript won't work with that example because the XMLHttpRequest cannot make requests across different domains.

    There are ways for it to work using a proxy, but in general JavaScript by itself will not work.

    Here is an example of a proxy written in php

    https://developer.yahoo.com/javascript/samples/proxy/php_proxy_simple.txt

Comments are closed.
For more Intervals help documentation, please visit help.myintervals.com