Skip to content
New issue

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

cannot unmarshal array into Go value of type map[string]interface {} #644

Open
hajsf opened this issue Feb 7, 2022 · 2 comments
Open

cannot unmarshal array into Go value of type map[string]interface {} #644

hajsf opened this issue Feb 7, 2022 · 2 comments

Comments

@hajsf
Copy link

hajsf commented Feb 7, 2022

Trying to implement the login example:

package main

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)
}

But go the below error:

S C:\Users\senses\Documents\WhatsApp> go run whatsapp
error during login: error decoding login resp: json: cannot unmarshal array into Go value of type map[string]interface {}
@zaytal
Copy link

zaytal commented Feb 24, 2022

Try this solution #631

@RafaelIngenium
Copy link

the version I use is indicated at #631 and the problem continues (for new positions)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants