'API Gateway ocelot with authorization Dotnet6

i want to pass token between micro service using Ocelot just like this:

enter image description here

this code dont work in other microservice

[Route("api/[controller]")]
[ApiController]
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme, Roles = "Admin")]

public class ValuesController : ControllerBase
{


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source