我是一名初學者,正在構建一個rest api和身份驗證。 我剛剛閱讀下面的,並解釋非常簡單的設置:Laravel rest api身份驗證
laravel 5 rest api basic authentication
在文章解釋不與標題或URL中的用戶名發送和密碼底部。
我的問題是基本的:任何人都可以給我一個例子如何使用上面的例子的cUrl請求?
例如:
$service_url = 'http://example.com/api/conversations';
$curl = curl_init($service_url);
$curl_post_data = array(
'user' => '[email protected]',
'passw' => '1234'
);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $curl_post_data);
$curl_response = curl_exec($curl);
curl_close($curl);