Tagged Questions

DotNetOpenAuth is a free and open source library and is available from http://www.dotnetopenauth.net. It features support for OpenID 1.1 and 2.0 Relying Parties and Providers, OAuth 1.0 & 1.1 Consumers and Service Providers, OAuth 2.0 Clients, Resource Servers and Authorization Servers, and Information Card relying parties. It was formerly knows as DotNetOpenId, but was renamed when it added OAuth and InfoCard support. Please use this tag instead

learn more… | top users | synonyms (1)

29
votes
3answers
4k views

Facebook/ Twitter with dotnetopenauth?

I've pretty much got OpenID working using the DotNetOpenAuth library. Now I would like users to be able to use Facebook and Twitter to login. This requires OAuth so I am looking for a tutorial on ...
24
votes
6answers
1k views

Where can I find a list of OpenID Provider URLs?

I've implemented OpenID on my website but I'm having a hard time finding a list of OpenID Provider URLs. I thought this would be easy to find but I've scoured the web and only found a handful, mostly ...
21
votes
6answers
3k views

OpenID authentication in ASP.NET?

I am starting to build a new web application that will require user accounts. Now that I have an OpenID that I am using for this site I thought it would be cool if I could use OpenID for ...
20
votes
5answers
2k views

Request for Tutorial to add Openid Support to NerdDinner ASP.NET MVC application

I'm looking learn about ASP.NET MVC and OpenId using the ASP.NET MVC NerdDinner tutorial. I would like to replace the Authentication system in NerdDinner to be OpenId only. I've downloaded the latest ...
18
votes
2answers
2k views

Securing my REST API with OAuth while still allowing authentication via third party OAuth providers (using DotNetOpenAuth)

I have a product with a straightforward REST API so that users of the product can directly integrate with the product's features without using my web user interface. Recently I have been getting ...
18
votes
1answer
3k views

OpenID: Trying to Get Email Address from Google OP

I’m using dotnetopenauth 3.2 to implement Openid and can’t figure out how to get Google to pass the email address in the Claims Response. I know that Google doesn’t support simple registration, but I ...
16
votes
5answers
1k views

How is OpenID implemented?

How would you design and implement OpenID components? (Was "How does OpenId work") I realize this question is somewhat of a duplicate, and yes, I have read the spec and the wikipedia article. After ...
14
votes
4answers
2k views

How do I use OAuth to connect to the Etrade API?

E-Trade released their API recently and provided technical documentation which is somewhat useful but not complete. Does anyone have a fully working example in C# that shows how this works? I have ...
13
votes
5answers
2k views

What is a good openid selector control?

Now that idselector has been upgraded to RPXNow and you can't "just use" the selector code, what is a good replacement? I want to implement OpenId on a new website that I am using, but the users are ...
12
votes
1answer
823 views

Using OpenID (via DotNetOpenAuth) along with user roles and other Membership Provider features in ASP.NET MVC

I'm building an ASP.NET MVC site where I want to use DotNetOpenAuth to implement OpenID login (I'm completely dropping username/password-based login). So far, I've been writing my code for the ...
12
votes
2answers
1k views

RememberMe with DotNetOpenId in ASP.NET MVC

Using DotNetOpenAuth 3 in ASP.NET MVC and implementing a RememberMe facility ... I'm finding that even if I set createPersistentCookie to true in FormsAuthentication.RedirectFromLoginPage and ...
10
votes
3answers
4k views

DotNetOpenAuth oAuth in ASP.NET MVC

I'm trying to understand how to apply the oAuth consumer library from DotNetOpenAuth in the context of ASP.NET MVC. oAuth is new to me, and the library doesn't seem very simple. Does anyone have a ...
10
votes
3answers
999 views

dotnetopenauth with asp.net mvc proving too frustrating to use

I've been trying excessively hard to implement a good open id solution into asp.net mvc - and everywhere I turn is absolute dead ends. DotNetOpenAuth is just too big and I have been thusfar unable to ...
10
votes
1answer
765 views

Storing DotNetOpenAuth information and user info retrieval

This question is a bit of a structural/design question as I'm having trouble working out the best way to perform the task. In my MVC app, I am using DotNetOpenAuth (3.4) as my login information ...
8
votes
3answers
554 views

How to configure dotNetOpenId in an session less load balancing environment

You've probably solved this before. I need to be able to use open id in an environment that does not have session stickiness. The servers do preserve the headers. I'm using ASP.NET MVC and ...
7
votes
1answer
876 views

WCF 4 Soap and Json Endpoint Secured with DotNetOpenAuth

I have a WCF 4 service project that I created using the WCF REST Service Template 40. My goal is to expose a single WCF service out as both a SOAP endpoint and a RESTful endpoint that returns JSON ...
7
votes
4answers
1k views

Should I use the built-in membership provider for an ASP .NET MVC application?

I've been using a custom membership provider for authentication in all my web form applications till now. I'm about to start developing my first website using MVC. I'm wondering if I should I use ...
7
votes
1answer
2k views

Dotnetopenauth oAuth Service provider explanation

I am a total newbie in the oAuth area and have set up DotNetOpenAuth to set up an oAuth Service provider. The sample provided in the DotNetOpenAuth download is quite confusing for me...maybe cos i am ...
7
votes
3answers
1k views

DotNetOpenAuth: Message signature was incorrect

I'm getting a "Message signature was incorrect" exception when trying to authenticate with MyOpenID and Yahoo. I'm using pretty much the ASP.NET MVC sample code that came with DotNetOpenAuth 3.4.2 ...
7
votes
1answer
2k views

Friendly name from Google using OpenID?

When I play ping-pong with the Google OpenID provider, I can't get a friendly name/nickname/username (whatever you want to call it). I get something atrocious looking like the following: ...
7
votes
1answer
1k views

Cannot get attributes from DotNetOpenId response

I'm trying to figure out how to get the users information after validating via open id. It doesn't matter if I supply a ClaimsRequest or FetchRequest whenever I call ...
6
votes
2answers
474 views

DotNetOpenAuth and Facebook

I'm attempting to use DotNetOpenAuth for some web single sign on functionality. I got the samples working for Google and Yahoo but am struggling with Facebook. I am using the CTP (4.0.0.11165) and ...
6
votes
3answers
2k views

DotNetOpenAuth CTP - Facebook bad request

I am trying to use the CTP to connect with Facebook over OAuth 2.0. I can get the initial request to Facebook working OK, but when it comes back and we call: client.ProcessUserAuthorization(null); ...
6
votes
3answers
3k views

Require Google to return email address as part of OAuth

I am using OAuth to access Gmail with dotNetOAuth. How can I force Google to return user's email address as part of callback after authorization? By default, Google OAuth callback only returns the ...
6
votes
4answers
2k views

DotNetOpenAuth: Webforms, Getting Started

I am trying to figure out how to get DotNetOpenAuth(http://www.dotnetopenauth.net/) working in my webforms app I don't understand where to begin. I have an OpenIDSelector on my Login.aspx that lets ...
6
votes
2answers
580 views

How do I assign a Role to an OpenId user for an ASP.NET MVC site?

I'm using OpenId in my ASP.NET MVC application. Works great :) Once i have the user's OpenId Identifier (once they have authenticated and returned to my site), i load up the users data (to get display ...
6
votes
2answers
984 views

Request email address from OpenID provider

I'm implementing OpenID and I would like to retrieve the user's email address and other information about the user, I'm doing this: var fetch = new FetchRequest(); fetch.AddAttribute(new ...
6
votes
3answers
1k views

Can I use OpenId with the ASP MembershipProvider?

I have a ASP.Net 2.0 website that is currently using a custom MembershipProvider and the standard login control. I would like to replace the login control with the one from DotNetOpenId. I override ...
5
votes
2answers
261 views

Storing necessary OpenID information

I'm trying to implement OpenID authentication for my site. Here's the scenario: I want the user to be able to login using just openId(user can just get verified by visiting openid provider. no need ...
5
votes
3answers
414 views

Where is the source for DotNetOpenAuth? The primary Sourceforge link contains just samples and the ApplicationBlock

Now that DNOA may do Call Home Reporting I want to investigate the source to see exactly what is being transmitted to the DNOA servers. The link on Source Forge only gives me the "Application Block" ...
5
votes
1answer
464 views

Html.OpenIdSelectorScripts helper method throwing NullReferenceException

I keep getting this error when trying to navigate to my LogOn page: System.NullReferenceException: Object reference not set to an instance of an object The line of code that is throwing the ...
5
votes
1answer
731 views

DotNetOpenId — “This message has already been processed” Error (Part 2)

This has already been asked Here, but not by me and the OP accepted an answer which did not help me. Thus far, I've tried logging in from different browsers, changing the web config, clearing ...
5
votes
1answer
290 views

Why isn't information about the openID user coming through the protocol?

I am using DotNetOpenAuth to integrate openID in our web application. The code below requests the information to the provider. try { var req = ...
5
votes
2answers
1k views

Implementing .Net OpenId with ASP.Net MVC

The sample I downloaded from DotNetOpenId has different files than the MVC 1.0 application I get when I create a new application. I am new to MVC and openId, all the examples I have come across are ...
5
votes
1answer
901 views

Best way to use OpenID authentication with Azure?

I'm struggling to get OpenID working on a Windows Azure application. I'm currently using DotNetOpenAuth (used to be DotNetOpenID) and first I had a problem with the relay step since Azure uses port ...
5
votes
1answer
548 views

Retrieve GMail data through DotNetOpenId

I'm Trying to login with dotNetOpenId to GMail accounts. It works but I'm not able to retrieve any claims. I know I could retrieve email addresses or user names as well, but no claims are being ...
4
votes
1answer
33 views

DotNetOpenAuth - Facebook - How can I authenticate users without forcing them to install a Facebook App?

I have implemented the sample application provided by DotNetOpenAuth as instructed here. As you can see below, this is requiring that the user installs this facebook application. I simply want to ...
4
votes
3answers
270 views

jquery mobile canceling 302 redirect to external site

I'm trying to integrate DotNetOpenAuth with a site that uses jquery mobile. I'm running into an issue where jquery mobile appears to be canceling a 302 redirect to the providing party (an external ...
4
votes
1answer
223 views

Nearly all OpenId relying parties reject assertions from my dotNetOpenAuth backed provider

Constructing an OpenId provider, I've run into the curious problem that only Stack Exchange sites will accept it. Discovery works fine, and watching log traffic I'm sending (what to me looks like) a ...
4
votes
2answers
2k views

DotNetOpenAuth MVC 3 Service Provider Example

I am looking at the OAuthServiceProvider WebForms example that comes with the DotNetOpenAuth project, but would like to implement this into an MVC 3 application instead. Is there any examples where ...
4
votes
2answers
2k views

Dotnetopenauth 3.4.6 with MVC3 - InvalidOperationException

When my Razor view calls @Html.OpenIdSelector(... I get an InvalidOperationException: The current IHttpHandler is not one of types: System.Web.UI.Page, ...
4
votes
1answer
937 views

Releasing an ASP.NET MVC 3 OpenId StarterKit under Open Source License

I've build a ASP.NET MVC 3 (RC at the moment) site that uses OpenID login system. I was still learning about OpenID while implementing this so I commented the code heavily. The result is a site that ...
4
votes
3answers
1k views

Is Windows Live ID an OpenID Provider? [closed]

I've heard different things. Seems like Microsoft experimented with a beta service, but I don't know if it's still available, or ever made it into production. If Windows Live ID is an OpenID ...
4
votes
3answers
234 views

Implementing DotNetOpenid in my asp.net website

I am trying to implement DotNetOpenid in my asp.net website. However, the more I try to read up on DotNetOpenid, the more confused I get. My initial goal is to allow user login process (similar to ...
4
votes
3answers
106 views

Is there a DotNetOpenAuth equivalent that runs on a LAMP stack?

I really love the way the StackExchange family of sites allow someone to log in using their OpenID or OAuth provider, which has been open-sourced as DotNetOpenAuth. This is absolutely wonderful, but ...
4
votes
2answers
711 views

DotNetOpenAuth with Google Calendar Feed

I have been racking my brain for a few days trying to get a list of calendars from Google using DotNetOpenAuth. I can successfully get a list of contacts using the DotNetOpenAuth Samples. I have ...
4
votes
3answers
649 views

Google's OpenID identifier is different depending on the “consumer” domain name. How to avoid potential problems if domain name needs to change in the future?

I'm currently testing an OpenID implementation, and I'm noticing that Google sends a different identifier for different consuming host name / domain name, even for the same user. For example, Google ...
4
votes
2answers
351 views

Invalid message signature when running OpenId Provider on Cluster

Introduction We have an OpenID Provider which we created using the DotNetOpenAuth component. Everything works great when we run the provider on a single node, but when we move the provider to a load ...
4
votes
3answers
934 views

claimsResponse Return Null

hello i have a following code in asp.net. i have used DotNetOpenAuth.dll for openID. the code is under protected void openidValidator_ServerValidate(object source, ServerValidateEventArgs args) { ...
4
votes
1answer
2k views

Implementing OpenID: identifying users

Company I work for wants to publish an internal website to the outside world, but also wants to identify the visitors in some easy way. Some functionality will be visible for all visitors but most ...

1 2 3 4 5 10