I was wondering if I am able to add quick_reply buttons to a welcome_message? I added it, and it does not seem to work (get text but no buttons. Checked saved welcome_message and the code is there as follows:
{
message_data : {
text: '...',
quick_reply: {
type: 'options',
options: [ ... ]
}
}
}
Nevermind, so it looks like it works in one scenario, but not another. If i click the message directly, it works:
However, if i click the link in the tweet, it passes a link which overrides the quick replies:
How do i disable that link? The link getting passed in is:
https://twitter.com/messages/compose?recipient_id={id}
All:
I found that if I deeplink the welcome_message_id, a la:
https://twitter.com/messages/compose?recipient_id=${id}&welcome_message_id=${welcomeMessageId}
It looks like it works!
1 Like