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:
This component has no trigger functions. This means it will not be accessible to select as a first component during the integration flow design.
Post new tweet.
Has no any configuration fields.
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.
Has no any configuration fields.
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
, and PATCH
or query for GET
and DELETE
methods
Get logged user information with creation date using Url
{
"method": "GET",
"url": "/2/users/me?user.fields=created_at"
}
Get logged user information with creation date using Request Body or Query field
{
"method": "GET",
"url": "/2/users/me",
"data": {
"user.fields": "created_at"
}
}
Please visite Twitter API v2 API limits