如何使用JSON检索我的数据
我的示例代码
test.js(客户端)
function(){
$.getJSON("https://graph.facebook.com/oauth/authorize?client_id=appid&redirect_uri=http://domain.com/sample/index.php", function(data) {
alert(data.userName);
});
}
index.php(服务器端)
<?php
$aReturn['userName'] = "carlo2893";
echo json_encode($aReturn);
?>
但它不会返回任何内容。
答案 0 :(得分:0)
不确定您要实现的目标,但您很可能需要