Creater
18.12.2012 - 11:48
скрипт, который вы посоветовали:
function http_auth_get($url,$username,$password){
$cred = sprintf('Authorization: Basic %s', base64_encode("$username:$password") );
$opts = array(
'http'=>array(
'method'=>'GET',
'header'=>$cred)
);
$ctx = stream_context_create($opts);
$handle = fopen ( $url, 'r', false,$ctx);
return stream_get_contents($handle);
var_dump($handle);
}
echo "не работает ничего " . http_auth_get('https://ссылка','логин','пароль');
не работает
Игорь_Vasinsky
18.12.2012 - 11:50
а что пишет?
_____________
HTML, CSS (Bootstrap), JS(JQuery, ExtJS), PHP, MySQL, MSSql, Posgres, (TSql, BI OLAP, MDX), Mongo, Git, SVN, CodeIgnater, Symfony, Yii 2, JiRA, Redmine, Bitbucket, Composer, Rabbit MQ, Amazon (SQS, S3, Transcribe), Docker
Creater
18.12.2012 - 11:52
Warning: fopen(ссылка): failed to open stream: HTTP request failed! HTTP/1.1 401 Unauthorized in C:\inetpub\wwwroot\Test\htmlparser.php on line 26 Warning: stream_get_contents() expects parameter 1 to be resource, boolean given in C:\inetpub\wwwroot\Test\htmlparser.php on line 28 не работает ничего