我想使用file_get_contents「發佈」到一個url並獲得auth令牌。我遇到的問題是它返回一個錯誤。發送請求file_get_content not working
Message: file_get_contents(something): failed to open stream: HTTP request failed! HTTP/1.1 411 Length Required.
我不知道是什麼原因造成這一點,但需要幫助。這是功能。
public function ForToken(){
$username = 'gettoken';
$password = 'something';
$url = 'https://something.com';
$context = stream_context_create(array (
'http' => array (
'header' => 'Authorization: Basic ' . base64_encode("$username:$password"),
'method' => 'POST'
)
));
$token = file_get_contents($url, false, $context);
if(token){
var_dump($token);
}else{
return $resultArray['result'] = 'getting token failed';
}
}
我試過用POSTMAN,它的工作原理,所以唯一的問題是,爲什麼它沒有與file_get_contents一起工作。
一些東西必須與你的'$ context'混淆,並且'Content-Length'標題丟失。 –
@ patryk-uszynski如何添加Content-Length? –
'file_get_content'有一些限制。試用CURL –