0

我对 Spring 和 Java 有点陌生,有人可以提供一个示例来调用一个 API,该 API 使用 ApiClient 使用 OAuth 访问令牌,它是使用 swagger 插件自动生成的?通过在下面的示例代码中提供客户端 ID、秘密和 oAuth 目标 URL。请指教。

ApiClient apiClient = new ApiClient();
apiClient.setBasePath(“http://localhost:8080”);
CustomersApi customerApi = new CustomersApi(apiClient);
List customers = customerApi.getCustomers(“peter”, 40);

以下是本博客中的示例代码。

https://blog.philipphauer.de/enriching-restful-services-swagger/

4

1 回答 1

0

这是客户端代码。您需要生成并实现您的 swagger 的服务器组件,然后相应地配置客户端。

于 2017-01-19T14:45:46.550 回答