有人可以帮我解决这个问题。 我对google-api调用的返回结果有疑问
我希望以html的形式回复它们,但是firefox会一直显示一个供稿页面。
在IE中,我收到一条错误消息,指出xml文档只能包含一个顶级元素 必须是原子“饲料”元素,所以我不明白。
我可以做些什么来改进这个?
$response= curl_exec($ch);
curl_close($ch);
// Parse the response
$response= simplexml_load_string($response);
foreach($response->entry as $position)
{
echo "position: " . $position->title . "<br />";
//next would be the stockvalue, but I don't yet know how to get that
}
修改
$headers = array(
"Authorization: GoogleLogin auth=" . $auth,
"GData-Version: 2",
);
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, "http://finance.google.com/finance/feeds/default/portfolios/1/positions");
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
修改 我看到了自己的错误 我没有使用
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
谢谢,理查德
答案 0 :(得分:1)
尝试var_dump()
您的$response
并查看您的内容数据。
我将使用file_get_contents()
代替CURL
。