For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
预约演示登录免费开始
  • 使用 SDK
    • SDK 概述
    • SDK 如何工作
    • Quickstart
    • Customer showcase
  • 使用 SDK
    • 项目结构
    • 添加自定义代码
    • Migrating to Replay
    • 功能特性
  • 参考
      • Generating an SDK
      • 发布到 Maven Central
      • Java 配置
      • 添加自定义代码
      • 变更日志
      • Customer showcase
  • 资源
    • generators.yml
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
预约演示登录免费开始
参考Java

Changelog

December 9, 2025
December 9, 2025
此页面是否有帮助?
编辑此页面
上一个

December 11, 2025

下一个

December 8, 2025

3.24.0

(feat): 添加支持通过 generators.yml 中的 default-timeout-in-seconds 配置默认超时时间。之前默认超时时间硬编码为 60 秒。现在您可以自定义:

配置示例:

1config:
2 default-timeout-in-seconds: 120

3.23.4

(chore): OAuth 令牌覆盖现在始终为使用 OAuth 客户端凭据认证的 API 启用。已删除 oauth-token-override 配置标志 - SDK 用户现在始终可以选择直接提供预生成的 bearer 令牌或使用 OAuth 客户端凭据流程。

生成的用法:

1// 选项 1:直接 bearer 令牌(绕过 OAuth 流程)
2SeedApiClient client = SeedApiClient.withToken("my-pre-generated-bearer-token")
3 .url("https://api.example.com")
4 .build();
5
6// 选项 2:OAuth 客户端凭据流程(自动令牌管理)
7SeedApiClient client = SeedApiClient.withCredentials("your-client-id", "your-client-secret")
8 .url("https://api.example.com")
9 .build();