Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
metabypass authored Jun 24, 2023
1 parent e486a09 commit 6d80953
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,36 +69,34 @@ To obtain the results for each type of captcha, do the following steps:
func main() {
captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE*******
token, code, message := captcha_solver_go.RecaptchaV2("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE*******
token, code, message := captcha_solver_go.RecaptchaV2("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE*******
fmt.Println("code: " + strconv.Itoa(code))
fmt.Println("message: " + message)
fmt.Println("token: " + token)
}
```

- **Recaptcha V3**
- **Recaptcha V3**

``` go
package main
import "fmt"
import "strconv"
import captcha_solver_go "github.com/metabypass/captcha-solver-go"
```go
func main() {
captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE*******
package main
import "fmt"
import "strconv"
import captcha_solver_go "github.com/metabypass/captcha-solver-go"
func main() {
captcha_solver_go.NewAuthClient("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", "YOUR_ACCOUNT_EMAIL", "YOUR_ACCOUNT_PASSWORD") // ****CHANGE HERE WITH YOUR VALUE*******
token, code, message := captcha_solver_go.RecaptchaV3("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE*******
fmt.Println("code: " + strconv.Itoa(code))
fmt.Println("message: " + message)
fmt.Println("token: " + token)
}
```
token, code, message := captcha_solver_go.RecaptchaV3("YOUR_SITE_KEY","YOUR_SITE_URL") // ****CHANGE HERE WITH YOUR VALUE*******
fmt.Println("code: " + strconv.Itoa(code))
fmt.Println("message: " + message)
fmt.Println("token: " + token)
}
```

4. Write this command in your terminal to get the result:
``` go
Expand Down

0 comments on commit 6d80953

Please sign in to comment.