We have an app that uses Twitter to process the location of our users when they sign / sign up. Now that Twitter has migrated to 1.1 and is uses a different authentication model, our app is no longer functional. Our developers overseas are unavailable and we need some insight immediately. It is GREATLY appreciated. Thanks!
Please grab the latest oAuth.lua module from the Twitter sample app. The old sample app used the socket based http.request blocking call to authenticate with Twitter’s API. They started using HTTPS instead of HTTP with 1.1 and that old http.request method doesn’t support HTTPS. The new version has been reworked to use network.request() to do the call so that HTTPS is supported. I think there are call changes with the oAuth.lua file. The sample app should show you how to do this.
Please grab the latest oAuth.lua module from the Twitter sample app. The old sample app used the socket based http.request blocking call to authenticate with Twitter’s API. They started using HTTPS instead of HTTP with 1.1 and that old http.request method doesn’t support HTTPS. The new version has been reworked to use network.request() to do the call so that HTTPS is supported. I think there are call changes with the oAuth.lua file. The sample app should show you how to do this.