douquejituan938904 2018-02-14 10:22
浏览 88
已采纳

在没有cURL的情况下在PHP中调用API

After writing the cURL script to to get what I wanted - I found out that the web server doesn't support cURL and only supports pure PHP. How would I go about doing this in pure PHP?

    <?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://xx.xxxx.xxx/xxx/blog/micro");
curl_setopt($ch, CURLOPT_HTTPGET, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$headers = [
    'Header1: Header1Input',
    'Header1: Header2Input',
];

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$server_output = curl_exec ($ch);

curl_close ($ch);
 $json = $server_output;
 $data = json_decode($json);


print  $data[1]->Headline;?>

Is what has managed to work for me.

I have tried this approach for pure PHP:

    <?php

// Create a stream
$opts = [
    "http" => [
            "method" => "GET",
            "header" => "Header1: Header1Input" .
            "Header2: Header2Input"
            ]
        ];

$context = stream_context_create($opts);

// Open the file using the HTTP headers set above
$file = file_get_contents('https://xx.xxxx.xxx/xxx/blog/micro', false, $context);

$file = json_decode($file);


print  $file[1]->Headline;?>
?>

However I get this error:

failed to open stream: HTTP request failed!

Thanks!

  • 写回答

2条回答 默认 最新

  • dragon8899 2018-02-14 10:35
    关注

    I can see the problem in the header after each line you have to add (CR LF).

    This is defined here.

    HTTP/1.1 defines the sequence CR LF as the end-of-line marker for all protocol elements except the entity-body.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失