X (Twitter) Component is designed to connect with X (Twitter) API v2
To authenticate the component you will need to create an App in developer portal’s App page, the component uses OAuth 1.0a. more info
Component credentials configuration fields:
- Consumer key (string, required) - Consumer API key
- Consumer secret (string, required) - Consumer API secret
- Access token key (string, required) - Authentication access token
- Access token secret (string, required) - Authentication access secret
Post new tweet
none
- Text - (string, required): Text of your tweet
-
id - (string, required): Unique identifier of your tweet
-
text - (string, required): Text of your tweet
-
edit_history_tweet_ids - (array, required): list of tweet ids edit history
Executes custom request.
none
-
Url - (string, required): Path of the resource. e.g.:
/2/users/me
-
Method - (string, required): HTTP verb to use in the request, one of
GET
,POST
,PUT
,PATCH
,DELETE
. -
Request Body or Query - (object, optional): Body of the request to send for
POST
,PUT
, andPATCH
or query forGET
andDELETE
methods
Examples
{
"method": "GET",
"url": "/2/users/me?user.fields=created_at"
}
{
"method": "GET",
"url": "/2/users/me",
"data": {
"user.fields": "created_at"
}
}
- headers - (object, required): HTTP headers of the response.
- responseBody - (object, optional): HTTP response body.