Authorization header (API Key) is missing" }in guzzle

PHP
$newresponse = $basicauth->request(
    'GET',
    'api/1/curriculum',
    ['debug'   => true], 
    ['headers' => 
        [
            'Authorization' => "Bearer {$acceso->access_token}"
        ]
    ]
)->getBody()->getContents();
Source

Also in PHP: