Womsxd / MihoyoBBSTools

Womsxd/AutoMihoyoBBS,米游社相关脚本
MIT License
874 stars 152 forks source link

怎么添加遇到验证码时调用第三方打码平台的api #198

Open 625373155 opened 4 weeks ago

Womsxd commented 4 weeks ago

captcha.py,然后自行进行相关代码调用

kafuneri commented 3 weeks ago

现在还有啥打码平台能过米游社的验证码,白折腾

luguoyixiazi commented 2 weeks ago

连夜查资料给哥们整了, https://github.com/luguoyixiazi/test_nine 哥们可以把图片打标拿来一起练哈,应该要不了很多数据~

zylf00 commented 1 week ago

连夜查资料给哥们整了, https://github.com/luguoyixiazi/test_nine 哥们可以把图片打标拿来一起练哈,应该要不了很多数据~

大佬牛批,就是不知道怎么使用

luguoyixiazi commented 1 week ago

连夜查资料给哥们整了, https://github.com/luguoyixiazi/test_nine 哥们可以把图片打标拿来一起练哈,应该要不了很多数据~

大佬牛批,就是不知道怎么使用

我项目里面写了,模型在另外一个项目里面,下载项目之后按照流程运行就行,使用的话就是在本项目的captcha.py里面改一下下面的函数

def game_captcha(gt: str, challenge: str):
    print(f"gt: {gt}, challenge: {challenge}")
    res = httpx.get("http://127.0.0.1:9645/pass_nine",params={'gt':gt,'challenge':challenge},timeout=10)
    print(res.text)
    datas = res.json()['data']
    if datas['result'] == 'success':
        return datas['validate']
    return None # 失败返回None 成功返回validate