微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

即使我使用谷歌语音 API,我仍然无法绕过这个网站上的 reCAPTCHA,为什么?

如何解决即使我使用谷歌语音 API,我仍然无法绕过这个网站上的 reCAPTCHA,为什么?

我从这个人 https://github.com/ohyicong/recaptcha_v2_solver 学到了这种绕过方法,这真的很有帮助,它在演示页面上运行成功,但是当我尝试这个网站 https://tip.railway.gov.tw/tra-tip-web/tip/tip001/tip119/queryTime 时,它只是无法通过 recaptcha 验证。代码如下:

    <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <LinearLayout
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical"
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <fragment
            android:id="@+id/nav_host_fragment"
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:defaultNavHost="true"
            app:navGraph="@navigation/mobile_navigation"
            android:layout_weight="@integer/int_two"/>

        <com.google.android.material.bottomnavigation.BottomNavigationView
            app:itemIconTint="@drawable/bottom_navigation_selector"
            app:itemTextColor="@drawable/bottom_navigation_selector"
            android:id="@+id/nav_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="@integer/int_zero"
            android:background="?android:attr/windowBackground"
            app:layout_behavior="@string/hide_bottom_view_on_scroll_behavior"
            app:menu="@menu/bottom_nav_menu" />

    </LinearLayout>
</layout>

顺便说一下,我的浏览器语言是 zh-tw,所以当 recaptcha 提供英文版或中文版 mp3 文件时,这有关系吗???

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。