Post a message input directly to user's twitter from website

Hi all,

I am new to wix and and velo coding here. I would like to create a little input box on my site where users can input any messages and those messages will be automatically posted to their own twitters as tweets with a hashtag to my site, is that possible? If so, would someone be kind enough to show me how?

Thanks again

Here’s some resources that can help you get started:

So you’ll make a button that when clicked:

  • Gets a user input value from the input text box
  • Adds it to the end of the string: https://twitter.com/intent/tweet?text=
  • encodes that string so it’s a valid URL
  • Redirects the user to the tweet url

@anthony Thank you, I will have a look at them!