How do I use external JSON…?

后端 未结 3 820
伪装坚强ぢ
伪装坚强ぢ 2021-01-07 00:49

spent a few hours trying to figure this out, but cannot for the life of me figure out what\'s going wrong.

All I\'m trying to do is load this:

https:         


        
相关标签:
3条回答
  • 2021-01-07 00:58

    JSONP relies on the server to return a JSONP formatted response. Basically, to use JSONP the server needs to return a JSON string wrapped in a function invocation ({"foo":1} becomes func({"foo":1})).

    As the server your using doesn't return a JSONP response, you cannot use JSONP, you can only use JSON.

    This is a shame, as JSON cannot be used x-domain due to the same origin policy (SOP). Therefore, the only option you have is to use a proxy server, which retrieves the JSON from the server, and either gives it to you in JSONP (see Yahoo Pipes), or which is on the same domain as the requested page (write a simple PHP script to get the file using file_get_contents() and then echo the output), in which case it can return the JSON.

    0 讨论(0)
  • 2021-01-07 01:06

    Yep, that's JSON. The site may not support JSONP, so you're gonna have to use PHP to do this.

    This is untested, but should work.

    <?php
    $url = 'https://recruit.zoho.com/ats/EmbedResult.hr?jodigest=2cV.Sr2As6VxhLMxQGuTNij*g.Fb3J7ysduDs.AC9sU-&atslocale=en_GB&rawdata=json';
    $JSON = file_get_contents($url);
    
    // echo the JSON (you can echo this to JavaScript to use it there)
    echo $JSON;
    
    // You can decode it to process it in PHP
    $data = json_decode($JSON);
    var_dump($data);
    ?>
    
    0 讨论(0)
  • 2021-01-07 01:08

    I breifly looked at the requirements and it looks like you need an API key as well as an account. I saw that the site provides services for XML and JSON only. It looks to be fairly well documented.

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