通过Curl / PHP查询API

前端之家收集整理的这篇文章主要介绍了通过Curl / PHP查询API前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在查看Parse.com REST API并使用 PHP使用的Curl包装器进行调用.

原始卷曲代码(作品):

curl -X GET \
  -H "X-Parse-Application-Id: myApplicationID" \
  -H "X-Parse-REST-API-Key: myRestAPIKey" \
  https://api.parse.com/1/classes/Steps

PHP代码(有效):

$ch = curl_init('https://api.parse.com/1/classes/Steps');

curl_setopt($ch,CURLOPT_HTTPHEADER,array('X-Parse-Application-Id: myApplicationID','X-Parse-REST-API-Key: myRestAPIKey','Content-Type: application/json'));
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

curl_exec($ch);
curl_close($ch);

多数民众赞成好,但现在当我尝试添加查询约束时:

原始卷曲代码(作品):

curl -X GET \
  -H "X-Parse-Application-Id: myApplicationID" \
  -H "X-Parse-REST-API-Key: myRestAPIKey" \
  -G \
--data-urlencode 'where={"steps":9243}' \
https://api.parse.com/1/classes/Steps

唉,我们最终得出了我的问题 – 上述代码PHP模拟是什么?

PHP代码(不起作用):

$ch = curl_init('https://api.parse.com/1/classes/Steps');

$query = urlencode('where={"steps":9243}');

curl_setopt($ch,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$query);

curl_exec($ch);
curl_close($ch);

错误响应:

Object ( [code] => 107 [error] => invalid json: where%3D%7B%22steps%22%3A9243%7D )

解决方法

您的上一个PHP示例已将请求从GET更改为POST.将参数传递给查询字符串而不是POST正文.尝试:
$query = urlencode('where={"steps":9243}');
$ch = curl_init('https://api.parse.com/1/classes/Steps?'.$query);

curl_setopt(
    $ch,array(
        'X-Parse-Application-Id: myApplicationID','Content-Type: application/json'
    )
);
curl_setopt($ch,1);

curl_exec($ch);
curl_close($ch);
原文链接:https://www.f2er.com/linux/395110.html

猜你在找的Linux相关文章