When you are logged into the dev server, your user doesn't have a federated_identity(). If you deploy the app and "install" it on a google apps domain and run it live, it should run properly.
To make it work in dev, you can change this line: domain = urlparse(user.federated_identity()).hostname to this: domain = urlparse(user.federated_identity()).hostname if user.federated_identity() else "[your domain]" - Eric -- You received this message because you are subscribed to the Google Groups "Google Contacts, Shared Contacts and User Profiles APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://code.google.com/apis/contacts/community/forum.html
