Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The federated login works, now how do I enable OpenID logins like .blogspot.com? I've misunderstood how to enable federated logins and OpenID same time. Are these 2 different cases and can get combined? I can enable federated login with very little code. Then my openid I must've misunderstood since it links to google. Here's how I tried app.yaml

- url: /_ah/login_required
  script: do_openid_login.py

and code

  loginmsg = loginmsg + '<a href=\"%s\">OpenID</a>' % (users.create_login_url("/"))

It leads to google login. What can you recommend? Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

OpenID and federated login are the same thing. Did you enable them in your admin console of your app? Have you read the section on OpenID in the docs?

share|improve this answer
It works leaving me to wish clearer documentation on passing the claimid parameter. Thank you Nick Johnson – Nick Rosencrantz Oct 3 '10 at 9:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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