gogodeps

How can I fix "go get ./..." when installing dependencies?


When I type "go get ./..." I get back:

./main.go:191: undefined: sendgrid.NewSendGridClientWithApiKey
./main.go:192: undefined: sendgrid.NewMail
./main.go:222: undefined: sendgrid.NewSendGridClientWithApiKey
./main.go:223: undefined: sendgrid.NewMail

How can I fix this error? Or how can I debug this? It is for an older version of go...version 1.5.2..if that helps. Please let me know if I can provide other information. I really do not know where to start as it works fine locally as is. Thanks in advance.


Solution

  • Sendgrid changed their API somewhat recently *.

    The reason it works locally is almost certainly because you had the old version of the go library in your GOPATH... using go get -v -u ./... (updating the dependencies) locally will probably break it locally too.

    You can fix it either by updating your code to match the new API, or by fixing your dependencies by vendoring the old version.