Hi folks,
I need to update my app due to Twitter's API changes from v1 to v1.1
Hopefully something simple, but the request I usually perform now requires authentication.
Any suggestions how I can alter this snippet to authenticate in the HTTP request?
// Create our HTTP Client var loader = Ti.Network.createHTTPClient({ timeout : 30000 }); // Sets the HTTP request method, and the URL to get data from loader.open("GET", "https://api.twitter.com/1/lists/statuses.json?slug=journo-tweets&owner_screen_name=transferwin&per_page=10&include_entities=true");
Many thanks!
Simon
1 Answer
Hi Simon,
please look to this Module from Marcel. It works perfect for me. In this github also special moduels for twitter and facebook. If you want to use the older variant you can use jsoauth from Griffith or birdhouse. Google is your friend.
Rainer
Your Answer
Think you can help? Login to answer this question!