symfony header token authorization

To authorize requests using a token in Symfony, you can use the Authorization header. Here's an example of how to do it:

use Symfony\Component\HttpClient\HttpClient;

// Create a new HTTP client
$client = HttpClient::create();

// Set the token value
$token = 'your_token_here';

// Make a request with the Authorization header
$response = $client->request('GET', 'https://example.com/api', [
    'headers' => [
        'Authorization' => 'Bearer ' . $token,
    ],
]);

// Get the response content
$content = $response->getContent();

In this example, we create a new HTTP client using Symfony's HttpClient class. We then set the token value and make a request to the desired API endpoint. The Authorization header is set with the token value prefixed by "Bearer". Finally, we can retrieve the response content using the getContent() method.

Please note that you need to replace 'your_token_here' with your actual token value.