跳至主要內容

接口列表

Kevin大约 4 分钟

1. /auth/preauth

  • 接口描述: 获取登录预授权,具体见:https://zhile.io/2023/05/19/how-to-get-chatgpt-access-token-via-pkce.html
  • HTTP方法: GET
  • 频率控制:

注意

因为现在用苹果批量登录会封设备,甚至封号,此接口已废弃,不再提供支持

2. /auth/login

  • 接口描述: 使用账号信息登录,获取供 ChatGPTopen in new window 使用的 Access Token 等信息
  • HTTP方法: POST
  • 请求类型: application/x-www-form-urlencoded
  • 请求字段:
    • usernameChatGPT 账号
    • passwordChatGPT 密码
    • mfa_code:开启二次验证,需要提供否则不需要
  • 返回字段: 返回 Access TokenSession Token 等信息
  • 频率控制: 根据IP地址 6/1m 限制,被限制时返回 429 错误码
  • 特别说明: 可直接调用,无需先调用获取登录预授权接口也无需支持国家的梯子
Curl
curl --location 'https://ai.fakeopen.com/auth/login' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'username=' \
--data-urlencode 'password='

3. /auth/refresh

  • 接口描述: 使用 Refresh Token 获取供 ChatGPTopen in new window 使用的 Access Token 等信息
  • HTTP方法: POST
  • 请求类型: application/x-www-form-urlencoded
  • 请求字段:
    • refresh_tokenChatGPTRefresh Token
  • 返回字段: 返回 Access Token 等信息
  • 频率控制:
Curl
curl --location 'https://ai.fakeopen.com/auth/refresh' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'refresh_token='

4. /auth/platform/login

  • 接口描述: 使用账号信息登录,获取供 Platformopen in new window 使用的 Access Token 等信息,用做获取用度、账单等信息
  • HTTP方法: POST
  • 请求类型: application/x-www-form-urlencoded
  • 请求字段:
    • usernameChatGPT 账号
    • passwordChatGPT 密码
    • mfa_code:开启二次验证,需要提供否则不需要
  • 返回字段: 返回 Access TokenRefresh Token 等信息
  • 频率控制: 根据IP地址 6/1m 限制,被限制时返回 429 错误码
Curl
curl --location 'https://ai.fakeopen.com/auth/platform/login' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'username=' \
--data-urlencode 'password='

5. /auth/platform/refresh

  • 接口描述: 使用 Refresh Token 获取供 Platformopen in new window 使用的 Access Token 等信息,用做获取用度、账单等信息
  • HTTP方法: POST
  • 请求类型: application/x-www-form-urlencoded
  • 请求字段:
    • refresh_tokenPlatformRefresh Token
  • 返回字段: 返回 Access Token 等信息
  • 频率控制:
Curl
curl --location 'https://ai.fakeopen.com/auth/platform/refresh' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'refresh_token='

6. /auth/session

  • 接口描述: 使用 Session Token 获取供 ChatGPTopen in new window 使用的 Access Token 等信息
  • HTTP方法: POST
  • 请求类型: application/x-www-form-urlencoded
  • 请求字段:
    • session_tokenChatGPTSession Token
  • 返回字段: 返回 Access Token 等信息
  • 频率控制:
  • 特别说明: Session Token 有效期为 3 个月
Curl
curl --location 'https://ai.fakeopen.com/auth/session' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'session_token='