How to do HTTP basic auth with Laravel and Guzzle Here is a snippet that allows you to do basic auth: $client = new Client(); $response = $client->request( ‘POST’, /*instead of POST, you can use Read More