doucheng1063 2018-04-11 05:04 采纳率: 100%
浏览 209
已采纳

PHP cURL 400错误无法满足请求

I'm using the bandsintown API for a personal project and my php code results in an error:

400 ERROR The request could not be satisfied. Bad Request

for some queries. I'm not sure why, and would like some help in fixing it. Thanks!

This is my code right now:

$ch=curl_init();

curl_setopt($ch, CURLOPT_URL, "https://rest.bandsintown.com/artists/".$artist."/events?app_id=".$app_id);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

$headers=array();
$headers[]="Accept: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);

curl_close($ch);

This results in an error on a fair number of artists and I'm not sure why.

Examples of some of the artists where this results in an error are those like BØRNS, MØ (which have normal results through a regular cURL request)

curl -X GET "https://rest.bandsintown.com/artists/B%C3%98RNS/events?app_id=$app_id" -H  "accept: application/json"

which I initially thought might have something to do with the non-standard characters.

But what makes me think this is another issue is that Calvin Harris and other similar artists with standard lettering throw the same error (and they also work fine on a regular cURL request)

curl -X GET "https://rest.bandsintown.com/artists/Calvin%20Harris/events?app_id=$app_id" -H  "accept: application/json"

So, I think there might be something wrong with the way I made my php cURL.

Any help would be much appreciated. Thanks again!

  • 写回答

1条回答 默认 最新

  • dqdt45183 2018-04-11 07:10
    关注

    probably because you don't urlencode $artist and $app_id. for example, a space is supposed to be encoded with + or %20, Ø is %C3%98, and so on. use urlencode(), or if that doesn't work, use rawurlencode().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何解决蓝牙通话音频突发失真问题
  • ¥15 安装opengauss数据库报错
  • ¥15 【急】在线问答CNC雕刻机的电子电路与编程
  • ¥60 在mc68335芯片上移植ucos ii 的成功工程文件
  • ¥15 笔记本外接显示器正常,但是笔记本屏幕黑屏
  • ¥15 Python pandas
  • ¥15 蓝牙硬件,可以用哪几种方法控制手机点击和滑动
  • ¥15 生物医学数据分析。基础课程就v经常唱课程舅成牛逼
  • ¥15 云环境云开发云函数对接微信商户中的分账功能
  • ¥15 空间转录组CRAD遇到问题