- Home /
Reading Tweets (not writing!) in Unity
Is there a convenient way to READ a user's tweets from within Unity? There are several plugins (like "Let's Tweet In Unity!" that take care of signing into a user's twitter account, handling OAuth, and writing new tweets. But I'd just like to read a user's public twitter feed, say display the 20 most recent tweets from a public account (like the devs behind a game).
Thanks!
Not an expert on the subject, but after a quick Google search, Twitter offers a simple way to retrieve the tweets posted by a user using a simple GET request
https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline.html
EDIT : $$anonymous$$y bad, authentication is needed.... According to this link, you have no choice but using Authentication in every requests
Your answer
Follow this Question
Related Questions
Posting To Twitter From App? - Unity 3 Answers
Post Data on Twitter 1 Answer
User modified/customized Android native Twitter posts 1 Answer
Posting to Twitter, can't use spaces 0 Answers
Getting Callbacks From Twitter Share 0 Answers