Skip to main content

74 posts tagged with "New Feature"

View All Tags

· 2 min read

We’ve added support for configuring proxy servers in the generated Java and Ruby SDKs.

This enhancement enables API requests to be routed through custom proxy servers, making it easier to work within corporate networks, behind firewalls, or in environments where outbound connections must go through a proxy.

What's New?

In many enterprise and secure environments, direct internet access is restricted. With this update, the SDKs now support proxy configuration, allowing you to route requests through a specified proxy server.

Developers can now set up proxy settings during SDK client initialization:

Configure proxy settings using httpClientConfig() with HttpProxyConfiguration.Builder:

Client client = new Client.Builder()
.httpClientConfig(configBuilder -> configBuilder
.proxyConfig(new HttpProxyConfiguration
.Builder("http://localhost", 8080)
.auth("username", "password")))
.build();

Proxy Configuration Builder

  • address — The full address of the proxy server.
  • port — The port on which the proxy server is listening.
  • auth — Credentials for proxy authentication (username and password).

Learn more about proxy configuration feature

Proxy configuration is also available in other SDKs:

· 3 min read

Introducing a more flexible and efficient way to validate your OpenAPI definitions with our GitHub App! The new Filepath Workflow allows you to specify the exact path to your main OpenAPI file, making it easier to manage and validate complex or modular API projects. This update streamlines the validation process, reduces unnecessary checks, and ensures your API definitions are always up to standard.

· 2 min read

APIMatic now supports four widely-used pagination strategies in Ruby SDKs: Offset, Page, Cursor, and Link based pagination. This enhancement provides a seamless and unified way to consume paginated API responses, regardless of the underlying mechanism.

· 3 min read

APIMatic now supports four widely-used pagination strategies in .NET SDKs: Offset, Page, Cursor, and Link based pagination. This enhancement provides a seamless and unified way to consume paginated API responses, regardless of the underlying mechanism.

· 3 min read

APIMatic now supports four widely-used pagination strategies in Java SDKs: Offset, Page, Cursor, and Link based pagination. This enhancement provides a seamless and unified way to consume paginated API responses, regardless of the underlying mechanism.