vote up 0 vote down star

How to build openID ReturnURL in gsp??

Define a ReturnURL

This is the endpoint where your webapp will receive and process the authentication responses from the OpenID Provider.

    String _returnURL = "http://example.com/openid";

Reference:http://code.google.com/p/openid4java/wiki/QuickStart

flag

18% accept rate

1 Answer

vote up 0 vote down

Assuming that you have grails.serverURL set appropriately in your config.groovy file you can use the createLink tag with absolute set to true:

grails.serverURL = "http://example.com"

String _returnURL = createLink(controller:'openid', action:'handleReturn', absolute:true)

// _returnURL -> http://example.com/appname/openid/handleReturn
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.