授权在 swagger jersey 中不起作用,授权复选框未显示

问题描述

Screenshot

List<AuthorizationScope> scopes = new ArrayList<AuthorizationScope>();
    scopes.add(new AuthorizationScope("pets","Access all"));
    List<GrantType> grantTypes = new ArrayList<GrantType>();
    ImplicitGrant implicitGrant = new ImplicitGrant(new LoginEndpoint("url"),"access_code");
    grantTypes.add(implicitGrant);
    AuthorizationType oauth = new OAuthBuilder().scopes(scopes).grantTypes(grantTypes).build();
    config.addAuthorization(oauth);

// 我正在使用 com.wordnik swagger-jaxrs_2.10 1.3.12

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)