Has anyone successfully implemented the Google Identity Toolkit, an implementation of an Account Chooser. I followed the initial steps here, but I still have a few questions, as I don’t quite know how to handle the entire data flow. I’m using Clojure / Compojure in the back-end:
- http://havethunk.wordpress.com/2011/08/10/google-identity-toolkit-asp-net-mvc3/
- http://code.google.com/apis/identitytoolkit/v1/acguide.html
A) don’t quite understand how ID Provider authentication, fits into my data model
- when implementing the callbackURL, what data should I expect, and
how’s that session state managed by GITkit (and all Account Choosers)
B) Is there a way to set this up the ‘callbackURL’ for development.
- the identity provider would need a URL that it can redirect back to
C) How can the GITkit / Account Chooser workflow let my users register an account that’s native to my app?
Thanks in advance
For anyone’s future reference. I was able to resolve the issue. You can follow this thread of how’s it’s done in Clojure.
I got it working with Ring/Compojure, and another fellow showed me his solution in Webnoir.
HTH