twitter_reply_to_tweet
Reply to any tweet on Twitter using its ID and a provided text, enabled through direct API access without local credential setup.
Instructions
Reply to an existing tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The reply text content | |
tweet_id | Yes | ID of the tweet to reply to | |
twitter_access_token | Yes | Twitter OAuth2 access token |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The reply text content",
"type": "string"
},
"tweet_id": {
"description": "ID of the tweet to reply to",
"type": "string"
},
"twitter_access_token": {
"description": "Twitter OAuth2 access token",
"type": "string"
}
},
"required": [
"twitter_access_token",
"tweet_id",
"text"
],
"type": "object"
}