I have some problem. I try to get information resource. And before it I need basic authentication. I've found some solution here, but it doesnt work.
$username = "username";
$password = "password";
$url = "https://sapi.website.ru:3443/services/";
//GetCountries
$urlCountries = $url."?action=GetCountries";
$remote_url = $urlCountries;
$opts = array(
'http' => array(
'method' => "GET",
'header' => "Authorization: Basic ".base64_encode("$username:$password"),
'timeout' => 60
)
);
$context = stream_context_create($opts);
$file = file_get_contents($remote_url, false, $context);
print($file);
Error: failed to open stream: Connection timed out in
Also I have this: file_get_contents(): Invalid date.timezone value 'Europe/Moskow', we selected the timezone 'UTC' for now - but it might work with it. Or not?
Maybe problem is in HTTPS connection. Support where I've got API, give me just url, login and password. And they said: "You just need basic authentication".
It is my first time when I try to work with it and maybe I'm missing something important. I hope You can help me with it.
P.S. Sorry for my English
UPD I've tried to do like this:
$headers = array(
'Content-Type: application/xml',
"Authorization: Basic ".base64_encode("$username:$password")
);
$process = curl_init($urlCountries);
curl_setopt($process, CURLOPT_HTTPHEADER, $headers);
curl_setopt($process, CURLOPT_HEADER, 1);
curl_setopt($process, CURLOPT_USERPWD, $username . ":" . $password);
curl_setopt($process, CURLOPT_TIMEOUT, 30);
curl_setopt($process, CURLOPT_POST, 1);
curl_setopt($process, CURLOPT_RETURNTRANSFER, TRUE);
$return = curl_exec($process);
curl_close($process);
print_r($return);
Now I dont have any error messages. But also I dont have any results.
I did it. Thanks to all. Some ports which I need were closed on my hosting. So also check it.