基本上我已被分配使用第三方REST API在
PHP中构建REST请求应用程序.做POST,GET等似乎很简单,但它们有一个称为授权标题的东西,它使用摘要标记.我怎么通过get传递这个?
例如:
$url = "http:/domain/core.xml"; $response = file_get_contents($url); echo $response;
返回:未找到Digest auth标头
在FireFoxes POSTER中,我只需添加标题“Authorization”,其值为“Digest 0:codehere”,它就可以了.
见
file_get_contents()
原文链接:https://www.f2er.com/php/133378.htmlstring file_get_contents ( string $filename [,bool $use_include_path = false [,resource $context [,int $offset = -1 [,int $maxlen ]]]] )
第三个参数$context允许您添加由stream_context_create()创建的上下文.请参阅HTTP context options.您可以在其中找到一个选项标题,允许您设置要发送的请求使用的标题,在您的情况下是Authorization-header