-
Notifications
You must be signed in to change notification settings - Fork 41
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
Error response when sending SMS messages #130
Comments
Sounds like an issue on the backend but we could probably make the logging better on the helper library side. This issue has been added to our internal backlog to be prioritized. Pull requests and +1s on the issue summary will help it move up the backlog. |
I am receiving the same error when I'm running the tutorial. What was the solution to this error? I've been trying to get more verbose error from twilio but the best I can visualize is the parameters are incorrect because there are many values. |
I had a similar issue, which was resolved once I removed the message service SID param from |
I am also experiencing this issue. Was there any fix? creating client like so:
followed example like so
and getting that |
@shwetha-manvinkurke has this been looked at ? this issue was created back in 2021 and so far i don't see a resolution. |
Hi all - if you can share any information about what version of the library you are running, and how you downloaded it, that would help a lot - we'd like to fix this. import "github.com/twilio/twilio-go/client"
import "fmt"
import "runtime"
func main() {
fmt.Println(client.LibraryVersion)
fmt.Println(runtime.Version())
} |
lib version: 1.22.0
runtime version: go1.22.4
i ran go get for all the twilio packages i'm using.
|
Hi @SWFullPotential version 1.22.0 had an error and has since been retracted. Please try v1.22.2 and see if you are still experiencing problems. Thanks! |
omg thank you.. I thought i tried that already whoops. thank you.. it's working now |
Issue Summary
Yesterday when trying to send SMS messages, I got the following error:
This happened perhaps 6 or so times,, so I instrumented the Twilio code to get more information, but I've not been able to reproduce the issue since.
I think the error is being created here:
https://github.com/twilio/twilio-go/blob/main/client/client.go#L80
Technical details:
I'm in the processing of switching from github.com/kevinburke/twilio-go to this package, so would like to know if anyone else has seen this, or if its just a transient problem.
The text was updated successfully, but these errors were encountered: