-
Notifications
You must be signed in to change notification settings - Fork 11
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
How to send a WhatsApp message using ContentSid and ContentVariables? #80
Comments
Hi twilio team - is there any update on this feature request? Currently there are issues in sending whatsapp messages, for eg #105 |
I raised a ticket via Twilio for the same thing, and was asked to check Github. Twilio team, can you provide an update on this please? |
+1 |
Twilio Team, |
hi, we just had similar issue I guess, try to set the content ID with the setter, not with the // java version generated by twilio documentation JSONObject params = new JSONObject(new HashMap<String, Object>());
params.put("1", "YOUR_VARIABLE1");
params.put("2", "YOURVARIABLE2");
Message message = Message
.creator(
new com.twilio.type.PhoneNumber("whatsapp:+18005551234"),
new com.twilio.type.PhoneNumber("MGXXXXXXXXX"),
// supposed to be the ContentSid, but not working with 10.7.0
"HXXXXXXXX"
)
// set it here, it should be working fine then
.setContentSid("HXXXXXXXX")
.setContentVariables(params.toString())
.create(); |
Hey
I came across this doc, which shows how to use the new Content API to send messages using ContentSid and ContentVariables. I was wondering if it is supported in the extension. If so, how do I use it?
The text was updated successfully, but these errors were encountered: