gpt4 book ai didi

php - 我的 CURL 代码有什么问题? Stackoverflow 的 API 给了我可疑的字符链

转载 作者:行者123 更新时间:2023-12-04 06:19:03 24 4
gpt4 key购买 nike

<?php
function get($get){
$ch = curl_init("http://www.google.com/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
echo $output = curl_exec($ch);
}
get("stackoverflow");

works fine

然而,stackoverflow 的 API
<?php
function get($get){
$ch = curl_init("http://api.$get.com/1.1/users/?filter=genesis&max=10000&min=5000");

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
echo $output = curl_exec($ch);
}
get("stackoverflow");

looks wrong

是 SO 的 API 的错误吗?这属于Meta吗?

最佳答案

尝试添加

curl_setopt($ch,CURLOPT_ENCODING , "gzip");

到您的代码。 API 的响应是 gzip 编码的

关于php - 我的 CURL 代码有什么问题? Stackoverflow 的 API 给了我可疑的字符链,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6836662/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com