IOS update to twitter api 1.1

I currently have many applications that go and make simple anonymous calls to the twitter API, and grab a few different timelines. Obviously, twitter changes things by 1.1 and requires authenticated calls using oauth. Does this mean that each of my users needs a token (their own account) to make a call, or do I need one token for all of them? Should I use twitter api included in iOS 5? Note. This is not the user's timeline ... just a few Twitter feeds. A bit confused. Any pointers would be appreciated.

+6
source share
2 answers

twitter api 1.1 links to this link, generating an oauth token and getting tweets with the screen name and getting a profile picture

+1
source

This is a good question, I myself struggled with this.

You can use the Twitter API client via PHP and then json_encode the user timeline you want and analyze it. This is not the best practice, but this is the work that I had to do for an application on which I wanted to show only tweets, no other actions are needed, for example, getting links, retweets, etc.

I hope this will serve.

0
source

Source: https://habr.com/ru/post/927403/


All Articles