I've been using this URL https://api.twitter.com/1/statuses/user_timeline.json?screen_name=apolinariosteps&callback=twitterCallback2
but since twitter API 1.0 is now gone, and only 1.1 works, what should I do?
I tried https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=apolinariosteps&callback=twitterCallback2
but it requires me authentication, I want to display always the same-user timeline in my application so it doesn't make sense to authenticate my user.
So I found this:https://dev.twitter.com/docs/auth/application-only-auth which I couldn't se a way to implement without server side coding, since I'm writing a PhoneGap app, I have no server choice.
What should I do to get to the user's timeline in API 1.1?
My code is
<ul id="twitter_update_list">
</ul>
<script type="text/javascript" src="js/blogger.js"></script>
<script type="text/javascript" src="https://api.twitter.com/1/statuses/user_timeline.json?screen_name=inagaki&callback=twitterCallback2"></script>
blogger.js grabs json and display it into nice <li>
s
What should I change to make this use the new authentication without server side coding?