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.

I'm trying to authenticate users to my ASP.Net MVC2 app throw a google apps standard edition account. I could not found examples nor documentation to achieving. I looked into DotNetOpenAuth Samples Solution, but did not found an example according my needs. All the examples were working against google accounts, but no with google apps.

I'm a little confused. For example:

  1. Do I have to place an xrds document on my site, or I can rely on google account's one (like "https://www.google.com/accounts/o8/.well-known/host-meta?hd=example.com"?)
  2. What about the certificate. Do I have to place it in my site?
share|improve this question

2 Answers

Have you looked at the OpenIdRelyingPartyWebForms/loginGoogleApps.aspx sample?

share|improve this answer

Andrew's example works perfectly and it is using a Discovery Service providing a UseGoogleHostedHostMeta = true to the OpenIdRelyingParty class.

HostMetaDiscoveryService GoogleAppsDiscovery = new HostMetaDiscoveryService { UseGoogleHostedHostMeta = true };
...
relyingParty = new OpenIdRelyingParty();
relyingParty.DiscoveryServices.Insert(0, GoogleAppsDiscovery);

I didn't find a similar behavior in MVC.

share|improve this answer
Did you translate the webforms sample to MVC? Mind posting the code? Thanks. – Roberto Bonini Sep 23 '10 at 12:47

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.