51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1014|回复: 3
打印 上一主题 下一主题

PHP cURL给出错误但在POSTMAN中工作正常

[复制链接]
  • TA的每日心情
    无聊
    4 天前
  • 签到天数: 530 天

    连续签到: 2 天

    [LV.9]测试副司令

    跳转到指定楼层
    1#
    发表于 2022-7-28 13:15:49 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    1测试积点
    I have some problem(s) with PHP cURL. I tried to get data from the API using PHP cURL. This is my cURL code in PHP :
    1. <?php

    2. $curl = curl_init();

    3. curl_setopt_array($curl, array(
    4.   CURLOPT_URL => "https://www.example.com/dos/AW/API",
    5.   CURLOPT_RETURNTRANSFER => true,
    6.   CURLOPT_ENCODING => "",
    7.   CURLOPT_MAXREDIRS => 10,
    8.   CURLOPT_TIMEOUT => 30,
    9.   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    10.   CURLOPT_CUSTOMREQUEST => "POST",
    11.   CURLOPT_POSTFIELDS => "{\"Filter\" : {\"IsActive\" : \"True\",\"OutputSelector\" : \"Name\"}}",
    12.   CURLOPT_HTTPHEADER => array(
    13.     "API_ACTION: GetItem",
    14.     "API_KEY: MHlIARzQqxVpOg2dUxH4q9w7bx3pOL6K",
    15.     "Accept: application/json"
    16.   ),
    17. ));

    18. $response = curl_exec($curl);
    19. $err = curl_error($curl);

    20. curl_close($curl);

    21. if ($err) {
    22.   echo "cURL Error #:" . $err;
    23. } else {
    24.   echo $response;
    25. }

    26. ?>
    复制代码
    1. With that code I can get a response but the response contains some errors. I also tried using POSTMAN to check, and the API works fine as I got a successful response with the same data. My question is: "Is there anything wrong with my cURL code that would explain why I got an error when I used cURL and I got successful response in POSTMAN "?

    2. I would appreciate if someone could help me with this. Thank you very much.
    复制代码


    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

  • TA的每日心情
    慵懒
    3 天前
  • 签到天数: 1521 天

    连续签到: 5 天

    [LV.Master]测试大本营

    2#
    发表于 2022-7-29 11:01:52 | 只看该作者
    比对下两个工具的请求,包含请求头
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    昨天 10:15
  • 签到天数: 756 天

    连续签到: 1 天

    [LV.10]测试总司令

    3#
    发表于 2022-7-29 14:23:51 | 只看该作者
    参照一楼
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    前天 07:50
  • 签到天数: 2818 天

    连续签到: 6 天

    [LV.Master]测试大本营

    4#
    发表于 2022-7-29 16:35:09 | 只看该作者
    看报文
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-25 02:49 , Processed in 0.074868 second(s), 21 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表