Zabs
Zabs

Reputation: 14142

Guzzle HTTP - add Authorization header directly into request

Can anyone explain how to add the Authorization Header within Guzzle? I can see the code below works for adding the username & password but in my instance I just want to add the Authorization header itself

$client->request('GET', '/get', ['auth' => ['username', 'password']

The Basic Authorization header I want to add to my GET request :-

Basic aGdkZQ1vOjBmNmFmYzdhMjhiMjcwZmE4YjEwOTQwMjc2NGQ3NDgxM2JhMjJkZjZlM2JlMzU5MTVlNGRkMTVlMGJlMWFiYmI=

Upvotes: 35

Views: 80595

Answers (4)

Shaun Bramley
Shaun Bramley

Reputation: 2047

From the looks of things, you are attempting to use an API key. To obtain your desired effect, simply pass null in as the username, like below.

$client->request(
    $method,
    $url,
    [
        'auth' => [
            null,
            $api_key
        ],
    ]
);

Upvotes: 11

Agu Dondo
Agu Dondo

Reputation: 13579

I'm using Guzzle 6. If you want to use the Basic Auth Scheme:

$client = new Client();
$credentials = base64_encode('username:password');
$response = $client->get('url',
        [
            'headers' => [
                'Authorization' => 'Basic ' . $credentials,
            ],
        ]);

Upvotes: 35

Grigoreas P.
Grigoreas P.

Reputation: 2472

use GuzzleHttp\Client;

...

$client = new Client(['auth' => [$username, $password]]);
$res = $client->request('GET', 'url', ['query' => ['param1'=>$p1, 'param2'=>'sometext']]);
$res->getStatusCode();
$response = $res->getBody();

This creates an authorized client and sends a get request along with desired params

Upvotes: 1

Matt D.
Matt D.

Reputation: 591

I don't know how I missed reading that you were looking for the Basic auth header, but nonetheless hope this helps somewhat. If you are just looking to add the Authorization header, that should be pretty easy.

// Set various headers on a request
$client->request('GET', '/get', [
'headers' => [
    'Authorization'     => 'PUT WHATEVER YOU WANT HERE'
    ]
]);

I build up my request in Guzzle piece by piece so I use the following:

$client = new GuzzleHttp\Client();
$request = $client->createRequest('GET', '/get');
$request->addHeader('X-Authorization', 'OAuth realm=<OAUTH STUFF HERE>');
$resp = $client->send($request);

Hope that helps. Also, make sure to include the version of Libraries you are using in the future as syntax changes depending on your version.

Upvotes: 39

Related Questions