Earlier i was using GET search/tweets of Twitter API 1.0 To get tweets according to #tags in Grails
Map jsonMap = grails.converters.JSON.parse(new URL('http://search.twitter.com/search.json?q=%23' + URLEncoder.encode(tag) + '&offset=' + offset + 'result_type=mixed&lang=en&page=' + page).text)
But due to change in Twitter API version 1.1 now the above call requires Authentication.
I want to fetch tweets on behalf of Application(Authentication) not by user Authentication.
Is this possible?
I came across application-only-auth but unable to implement it.
https://dev.twitter.com/docs/auth/application-only-auth
How to implement above using scribe API in Grails.
I have done like this and it worked for me.