1.PythonでReCaptcha Mobileをバイパスする
2.nodejs で ReCaptcha Mobile をバイパスする
// https://github.com/nextcaptcha/nextcaptcha-typescript
import NextCaptcha from 'nextcaptcha-ts';
const apiKey = 'YOUR_API_KEY';
const nextCaptcha = new NextCaptcha(apiKey);
const result = await nextCaptcha.recaptchaMobile({websiteURL, websiteKey});
3.GoでReCaptcha Mobileをバイパス
// https://github.com/nextcaptcha/nextcaptcha-go
package main
import (
"fmt"
"log"
"github.com/nextcaptcha/nextcaptcha-go"
)
func main() {
api := nextcaptcha.NewNextCaptchaAPI("API_KEY")
result, err := api.RecaptchaMobile("https://example.com", "SITE_KEY", nextcaptcha.RecaptchaV3Options{})
if err != nil {
log.Fatal(err);
}
fmt.Println("result "+result)
}
4.C# で ReCaptcha Mobile をバイパスする
// https://github.com/nextcaptcha/nextcaptcha-csharp
string clientKey = "YOUR_CLIENT_KEY";
string solftId = ""; // Optional
string callbackUrl = ""; // Optional
bool openLog = true; // Optional
var nextCaptchaAPI = new NextCaptchaAPI(clientKey, solftId, callbackUrl, openLog);
string appKey = "YOUR_APP_KEY";
string appPackageName = ""; // Optional
string appAction = ""; // Optional
var result = await nextCaptchaAPI.SolveRecaptchaMobileAsync(appKey, appPackageName, appAction);