Cannot send Authorization Bearer Token using Springfox
问题 I'm having trouble understanding why "Authorization: Bearer __" is not being sent in my api using Springfox 2.5.0. I have the following configuration: private ApiKey apiKey() { return new ApiKey( "Authorization", // name: My key - Authorization "api_key", // keyname: api_key "header"); } @Bean SecurityConfiguration security() { return new SecurityConfiguration( null, null, null, "Docserver2_fwk", // app name "BEARER", // api key value ApiKeyVehicle.HEADER, "Authorization", ","); } And the