Laravel 8 发送 Raw 请求
你可以使用 withBody
方法来创建一个原始数据的请求:
$response = Http::withBody(
base64_encode($photo), 'image/jpeg'
)->post('http://test.com/photo');
你可以使用 withBody
方法来创建一个原始数据的请求:
$response = Http::withBody(
base64_encode($photo), 'image/jpeg'
)->post('http://test.com/photo');