谷歌v3验证码,企业版和普通版,一个接口全部兼容

区分

  • 如何区分 普通版企业版

    • 普通版:anchor 接口路由: /recaptcha/api2/anchor

    • 企业版: anchor 接口路由: /recaptcha/enterprise/anchor

请求地址

https://akm.sakura-luo.top/v3_token?token=xxxx

POST application/json

请求参数

参数名

类型

说明

必须

sitekey

String

谷歌验证码对接 key(anchor/reload 接口的 k 值)

referer

String

请复制浏览器上显示的完整地址,不要改动,更不要去开发者工具里去找。

size

String

验证类型(invisible/normal, 只有这两个选择, 具体查看 anchor 接口的 size 值, 必须对应)

title

String

触发页面的 title (f12 打开控制台, 输入 document.title)

action

String

打开 f12 ,普通V3输入 debug(grecaptcha.execute),企业V3输入 debug(grecaptcha.enterprise.execute) ,触发完成验证,等下断点触发,在 Scope 中复制 action 的值

proxy

String

http://user:pwd@xxxx.com:11111

version

string

企业版:enterprise,普通版:universal

请求示例

{
    "sitekey": "6Lc_JIckAAAAAO1aVvnBetPQeFLRLCfFBOqOy9c3",
    "referer": "https://www.okx.com/zh-hans/account/login",
    "size": "invisible",
    "title": "OKX官网登录 | 欧易",
    "action": "login",
    "proxy": "http://127.0.0.1:10809",
    "version": "enterprise",
}

返回示例

{
    "time": "3345.27 ms",
    "msg": "生产成功",
    "status": 1,
    "data": "03AFcWeA70BT9zm_ST7XLuDlLYLgOcHT6Lqt6osU5dh_XSi79sVDSozb1E2e7X2PzYLDtT71yTvJB_cEEuoWkdy9PHCODoKaBSdUQ"
}