0

我正在尝试通过 JSONP 检索跨域用户数据,并通过 PHP 和 jQuery 获得不同的结果。首先,这是通过 PHP 生成的 JSONP(传递了正确的标头('Content-type: application/json; charset=utf-8')):

hsAuthCallback({"planID":4,"memberPlan":"EMPLOYEE","memberName":"Fred"});

我正在尝试两种方法来检索它,首先是jQuery,它有效

$(function() {
    $.ajax({
        type: 'GET',
        url: 'https://url.com/path_to_file',
        jsonpCallback: 'hsAuthCallback',
        contentType: "application/json",
        dataType: 'jsonp',
        success: function(data) {
            $('#jsOutput').text( JSON.stringify(data) );
        },
        error: function(jqXHR, textStatus, errorThrown) {
           console.log("error("+jqXHR+", "+textStatus+", "+errorThrown+")");
        }
    });
});

按预期返回:

{"planID":4,"memberPlan":"EMPLOYEE","memberName":"Fred"}

接下来是PHP,问题出在哪里(我用一个函数来解码jsonp)

// Decode JSONP (http://felix-kling.de/blog/2011/01/11/php-and-jsonp/)
function jsonp_decode($jsonp, $assoc = false) { 
    if($jsonp[0] !== '[' && $jsonp[0] !== '{') { 
        $jsonp = substr($jsonp, strpos($jsonp, '('));
    }
    return json_decode(trim($jsonp,'();'), $assoc);
}    
$url = 'https://url.com/path_to_file';
$jsonp = file_get_contents($url);
$plan_data = jsonp_decode($jsonp, true);
var_dump($plan_data);

回报:

array(3) {
  ["planID"]=>
  int(0)
  ["memberPlan"]=>
  string(0) ""
  ["memberName"]=>
  string(0) ""
}

我已经使用 S3 上的实际 json 文件进行了测试,它似乎可以工作。我对生成的 JSONP 的控制有限。有什么想法吗?

4

0 回答 0