Go
Last updated
Last updated
package main
import (
tls_client "github.com/antibotaio/tls-client"
http "github.com/bogdanfinn/fhttp"
)
func main() {
options := []tls_client.HttpClientOption{
tls_client.WithAntibotAIO("YOUR_API_KEY", []string{"footlocker.pl"}),
}
client, err := tls_client.NewHttpClient(tls_client.NewLogger(), options...)
if err != nil {
t.Fatal(err)
}
}