I'm very new to Grails, and I'm trying the Oauth plugin.
I configured my plugin as here:
oauth {
providers {
twitter {
api = TwitterApi
key = 'xxxxx'
secret = 'xxxxx'
}
}
debug = true
}
and added the link in my gps file like this:
<oauth:connect provider="twitter">Connect to Twitter</oauth:connect>
but when I run my app and click on the Connect to Twitter
link I been taken to :
http://localhost:8080/oauth/twitter/authenticate
why this is happening. This looks so wired. Rather than taking me to the twitter page for login its taking me here.
Where I have been making the mistake?
Thanks in advance.