我对 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/