我有Spring Boot应用程序 . 我想在我的项目中整合招摇 .

我在swagger上使用springfox 2.7.0和auth0进行身份验证,但是从auth0到swagger的头部发送id_token有问题 .

这是我的Swagger配置代码:

@Bean
public Docket api() { 

return new Docket(DocumentationType.SWAGGER_2)  
  .select()              
  .apis(RequestHandlerSelectors.basePackage("name.web"))              
  .paths(PathSelectors.any())                          
  .build()
  .apiInfo(apiInfo())
  .securitySchemes(Collections.singletonList(securitySchema()));            

}

 private OAuth securitySchema() {

   List<AuthorizationScope> authorizationScopeList = new ArrayList<>();

   authorizationScopeList.add(new AuthorizationScope("openid", "access all"));

    List<GrantType> grantTypes = new ArrayList<>();

    final TokenRequestEndpoint tokenRequestEndpoint = new TokenRequestEndpoint("https://bovinet.auth0.com/authorize", "clientId", "secretKey");

    final TokenEndpoint tokenEndpoint = new TokenEndpoint("http://server.com/oauth/token", "id_token");


    AuthorizationCodeGrant authorizationCodeGrant = new 
    AuthorizationCodeGrant(tokenRequestEndpoint, tokenEndpoint);

    grantTypes.add(authorizationCodeGrant);

    OAuth oAuth = new OAuth("oauth2", authorizationScopeList, grantTypes);

    return oAuth;
 }


 private ApiInfo apiInfo() {
    @SuppressWarnings("deprecation")
     ApiInfo apiInfo = new ApiInfo(
    "Name", "", "", "", "", "", "");
     return apiInfo;
 }

 @Bean
 SecurityConfiguration security() {
  return new SecurityConfiguration(
   "clientId",
   "secretKey",
   "test-app-realm",
   "https://server.com",
   "api_key",
   ApiKeyVehicle.HEADER, 
   "Authorization", 
   "," /*scope separator*/);
}

当我为 swagger-ui.htm 页打开控制台时,我可以看到id_token响应 /oauth/token 请求,但我不知道如何将该标记放在swagger的 Headers 中 .

有人可以帮我解决这个问题吗?