I am trying to setup a scenario to reply to certain tweets. I know this can be done with certain parameters and that my curl call should be something like
curl -X POST "https://api.twitter.com/2/tweets" -H "Authorization: OAuth $OAUTH_SIGNATURE" -H "Content-type: application/json" -d '{"reply":{"in_reply_to_tweet_id":"1234567890"},"text":"YOUR REPLY HERE"}'
However I have no idea on how to do this since the X integrations on make.com don’t allow to enter the reply parameters.
I have seen from this topic that an HTTP OAuth2 is needed but I have the same issue as the user linked and I’m at a loss here.