博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
curl 要么 file_get_contents 获得授权页面的方法的必要性
阅读量:5285 次
发布时间:2019-06-14

本文共 2899 字,大约阅读时间需要 9 分钟。

今天,需要工作,需要使用 curl / file_get_contents 获得授权的必要性(Authorization)的页面内容。解决后写了这篇文章分享给大家。

php curl 扩展,可以在server端发起POST/GET请求,訪问页面,并能获取页面的返回数据。

比如要获取的页面:http://localhost/server.php

$_POST['content'] : ''; header('content-type:application/json'); echo json_encode(array('content'=>$content)); ?

>

使用curl获取server.php页面

'fdipzone blog');$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param));curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);$ret = curl_exec($ch);$retinfo = curl_getinfo($ch);curl_close($ch);if($retinfo['http_code']==200){ $data = json_decode($ret, true); print_r($data);}else{ echo 'POST Fail';}?>
假设服务没有安装php curl扩展,使用file_get_contents也能够实现发起请求。获取页面返回数据

'fdipzone blog');$opt = array( 'http' => array( 'method' => 'POST', 'header' => 'content-type:application/x-www-form-urlencoded', 'content' => http_build_query($param) ));$context = stream_context_create($opt);$ret = file_get_contents($url, false, $context);if($ret){ $data = json_decode($ret, true); print_r($data);}else{ echo 'POST Fail';}?>
使用curl 和 file_get_contents 返回的结果都是一样的。

Array(    [content] => fdipzone blog)
对于须要授权的页面,比如使用了htpasswd+.htaccess设置文件夹訪问权限的页面,直接用上面的方法会返回401 Unauthorized错误。

这次的样例先不使用htpasswd+.htaccess来控制訪问权限,而使用 $_SERVER['PHP_AUTH_USER']$_SERVER['PHP_AUTH_PW']这两个server參数。

想了解htpasswd+.htaccess的朋友。能够訪问我之前写的文章

http://localhost/server.php 改动为:

$_POST['content'] : ''; header('content-type:application/json'); echo json_encode(array('content'=>$content)); ?>

设定帐号:fdipzone password:654321

curl中。有一个參数是 CURLOPT_USERPWD,我们能够利用这个參数把帐号password在请求时发送过去。

curl_setopt($ch, CURLOPT_USERPWD, '帐号:password');
curl请求的程序改动为:

'fdipzone blog');$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param));curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_USERPWD, 'fdipzone:654321'); // 增加这句$ret = curl_exec($ch);$retinfo = curl_getinfo($ch);curl_close($ch);if($retinfo['http_code']==200){ $data = json_decode($ret, true); print_r($data);}else{ echo 'POST Fail';}?>
而file_get_contents 假设要发送帐号和password,须要手动拼接header

file_get_contents 请求的程序改动为:

'fdipzone blog');$auth = sprintf('Authorization: Basic %s', base64_encode('fdipzone:654321')); // 增加这句$opt = array( 'http' => array( 'method' => 'POST', 'header' => "content-type:application/x-www-form-urlencoded\r\n".$auth."\r\n", // 把$auth增加到header 'content' => http_build_query($param) ));$context = stream_context_create($opt);$ret = file_get_contents($url, false, $context);if($ret){ $data = json_decode($ret, true); print_r($data);}else{ echo 'POST Fail';}?>
源代码下载地址:

版权声明:本文博客原创文章,博客,未经同意,不得转载。

转载于:https://www.cnblogs.com/yxwkf/p/4746239.html

你可能感兴趣的文章
文本域添加编辑器
查看>>
Yum安装MySQL以及相关目录路径和修改目录
查看>>
java获取hostIp和hostName
查看>>
关于web服务器和数据库的各种说法(搜集到的)
查看>>
C# Stream 和 byte[] 之间的转换
查看>>
OMG: daily scrum nine
查看>>
redis与spring结合错误情况
查看>>
第六章 字节码执行方式--解释执行和JIT
查看>>
字符串方法title()、istitle()
查看>>
yield语句
查看>>
查看linux系统中占用cpu最高的语句
查看>>
[洛谷P1738]洛谷的文件夹
查看>>
ubuntu server设置时区和更新时间
查看>>
【京东咚咚架构演进】-- 好文收藏
查看>>
【HTML】网页中如何让DIV在网页滚动到特定位置时出现
查看>>
文件序列化
查看>>
jQuery之end()和pushStack()
查看>>
Bootstrap--响应式导航条布局
查看>>
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>