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

How to send a WhatsApp message using ContentSid and ContentVariables? #80

Open
hashimsayed0 opened this issue Sep 16, 2023 · 5 comments

Comments

@hashimsayed0
Copy link

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?

@bhrigu123
Copy link

bhrigu123 commented Apr 19, 2024

Hi twilio team - is there any update on this feature request? Currently there are issues in sending whatsapp messages, for eg #105

@sbaynes
Copy link

sbaynes commented Aug 16, 2024

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?

@NashIlli
Copy link

+1

@richenri
Copy link

Twilio Team,
I received a notice that as of April 1st the model with body will stop working, meaning that everyone who uses the extension will no longer be able to send messages. We need a solution using contentSid. Can you help us?

@optyler
Copy link

optyler commented Mar 17, 2025

hi, we just had similar issue I guess,

try to set the content ID with the setter, not with the creator method...

// java version generated by twilio documentation
// please read the comments for the "fix"

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();

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

6 participants