We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
below sample does't work for me, i got message like this
panic: couldn't dial whatsapp web websocket: websocket: bad handshake
howt to solve?
import ( "fmt" "os" "time" qrcodeTerminal "github.com/Baozisoftware/qrcode-terminal-go" "github.com/Rhymen/go-whatsapp" ) func main() { wac, err := whatsapp.NewConn(5 * time.Second) if err != nil { panic(err) } qr := make(chan string) go func() { terminal := qrcodeTerminal.New() terminal.Get(<-qr).Print() }() session, err := wac.Login(qr) if err != nil { fmt.Fprintf(os.Stderr, "error during login: %v\n", err) return } fmt.Printf("login successful, session: %v\n", session) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
below sample does't work for me, i got message like this
howt to solve?
The text was updated successfully, but these errors were encountered: