Get User's Tweets and Replies
Returns array of tweets from the user's tweets and replies timeline, including both original tweets and replies.
Typically Twitter returns ~20 results per page. You can request additional search results by sending another
request to the same endpoint using cursor parameter.
The endpoint only works with profiles that are 'public' and will fail to retrieve tweets for profiles with 'protected' privacy setting.
Path parameters
The numerical ID of the desired user. When using languages where the user_id value exceeds the default Integer type limit (e.g., JavaScript), you should store user_id as a String. Use the id_str property returned by the API for these values.
Query parameters
Cursor value obtained from next_cursor response property. Use this parameter to retrieve additional pages. Omit this parameter to retrieve the first page. Cursor may contain spaces and other special characters, therefore always remember to URL-encode the value.
Response
Request succeeded