Twitter API GET statuses/user_timeline - how to include authentication?
问题 For the example get request: https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=twitterapi&count=2 As documented here: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline.html I have an oauth user token and user token secret, plus my app credentials... The docs state that authentication is supported, but how do I include it in the get request for screen names that are not publicly accessible? 回答1