如何在PHP Get Request上设置内容类型?

时间:2016-01-27 16:56:42

标签: php json rest

很抱歉,如果这很简单,但我是REST请求的新手。我正在尝试向我提供的REST API发出GET请求,但是我收到415错误(不支持的媒体类型)。

这是我的(非常基本的)代码:

<?php

header('Content-Type: application/json;charset=utf-8;');

$url = "https://opsview.somedomain.net/rest";
$response = file_get_contents($url);
echo $response;

?>

我连接的API说它支持json或xml所以不确定为什么我收到此错误?有什么想法吗?

非常感谢任何帮助。

0 个答案:

没有答案