I'm making an iOS App that needs to show tweets in a List feed that i have set up. The problem is that [i don't want to use the end user's twitter account at all], i just want to show that one list feed in the app, by pulling its data in through the Twitter API.
Unfortunately for me, the Twitter API after version 1.1, requires authentication to do anything with it.
https://dev.twitter.com/docs/api/1.1/get/lists/statuses#example-request
All of the cases i have seen are using the end user's login within iOS to pull feeds in, which works, but here is my issue:
Can I authenticate these requests for the list feed, without the end user who is using the app needing to be signed into their own twitter account on iOS. i.e. the requests are authenticated with one specific twitter account [mine]?
or if there is a way to get the raw feed data without using the twitter API [i need to raw data to place into a UITableView within my app - i don't want to use a UIWebView].
this would make the feed accessible to end users without a twitter account [the list feed is public anyway, so i don't know why it needs authentication in the first place].
Many thanks!