0
votes
0answers
34 views

Create your own OpenId and OAuth Provider

I want to implement a single-sign-on on all of my applications including mobile apps. Is it a good practice to create your own OpenId and OAuth Provider? Is there a good exmaple on how to do this ...
-1
votes
1answer
13 views

How do I re-add a removed reference to DotNetOpenAuth?

I'm using Visual Studio 2012 and I deleted a reference to DotNetOpenAuth because I didn't think I needed it and I thought it'd be easy to reinsert it (like any other reference). Well I need to get it ...
0
votes
1answer
38 views

DotNetOpenAuth Google API Offline Access

I've spent some time over the last few days trying to implement a feature for my web application. The feature should add new events to a users google calendar while they are offline. I read the ...
1
vote
1answer
54 views

How to get the profile picture from facebook, gmail, twitter by using DotNetOpenAuthentication?(Description Indside)

I'm using DotNetOpenAuth along with Microsoft.AspNet.Membership. I've done upto user login and save his mail id into my database with the help of this. Now I need to get the profile picture of a user ...
0
votes
0answers
23 views

Membership.OpenAuth with Twitter works but keeps asking to Authorize App

I am using ASP.NET forms (not MVC) along with their out of the box templated solution for logging using Facebook, Twitter, etc (all wrapped up in Microsoft.AspNet.Membership.OpenAuth). Everything ...
6
votes
0answers
91 views

Processing AuthenticationResult's from different providers in the same page

I'm integrating OpenID to my existing application with LiveID and Google providers. On my login page, in addition to the original login fields I have added 'Log in with Google' and 'Log in with ...
0
votes
0answers
26 views

VS 2012 DotNetOpenAuth Entity Framework DB

I can't figure this out... I'm creating a new asp.net forms (VB) "website" (not a project) in VS2012 Professional. And I have a remote SQL server set up with the Entity Framework (tables,sp,etc) ...
0
votes
0answers
68 views

DotNetOpenAuth AspNet request status_update permission

I am using DotNetOpenAuth.AspNet for Facebook authentication. And everything works well. However, I have to change app permissions so when a user logins I should request status_update permission. ...
0
votes
1answer
49 views

Purpose of ProviderUserName column in DotNetOpenAuth sample

I've started an ASP.NET web site in Visual Studio using a Microsoft pre-defined template. This is to help me learn about OpenID within ASP.NET. Inside the included SQL database within the sample ...
0
votes
0answers
62 views

How to get windowslive email of user using dotnetopenauth?

It's possible to get user's windowslive email by using web request. But i need to use dotnetopenauth for code optimization. my AuthConfig.cs is; OpenAuth.AuthenticationClients.AddMicrosoft( ...
2
votes
0answers
141 views

DotNetOpenAuth.WebServerClient.XSRF-Session changes during callback

I'm trying to setup a simple Oauth2 login authentication. However I'm stuck at the callback that throws the following exception: [ProtocolException: Unexpected OAuth authorization response ...
0
votes
1answer
203 views

OAuthWebSecurity - Without OpenID

Is it DotNetOpenAuth OAuthWebSecurity only for OpenID Providers? OAuthWebSecurity.RegisterClient(new CutomOAuth2Client("ID", "KEY"), "CustomProvider", null); Or could I base my entire ...
0
votes
0answers
84 views

Integrating DotnetOpenAuth and SQLMembershipProvider authentication

When one person authenticates as twitter user, the user is granted access to my site via DotNetOpenAuth I enabled. The user is asked for a nonexisting username, if the username is already existing. So ...
0
votes
1answer
176 views

DotNetOpenAuth ClaimedIdentifier changes? What should I store in database to identify users

There are quite a few questions like this and this which all claims that ClaimedIdentifier should be used to uniquely identify each user. After successful login I am storing ClaimedIndentifier in ...
1
vote
1answer
283 views

Client for Custom OpenId provider in Asp.Net web application

I am relatively new to asp.net so sorry if the question sounds silly. I have to build an Asp.net web application able to login on a OpenId custom server (i.e. not included in the DotNetOpenAuth ...
1
vote
0answers
464 views

Getting Google Oauth2 Token using dotnetopenauth

I'm having an issue retreiving the OAuth2 token for google using DotNetOpenAuth 4.2.0.13024. I've got to the point where I can successfully make the authorization request to the google endpoint ...
1
vote
1answer
452 views

OAuthWebSecurity create account - how does it work?

I'm confused and concerned with the following line because it seems like the API for the OAuthWebSecurity has its own authentication store. // If the current user is logged in add the new ...
4
votes
1answer
673 views

DotnetOpenAuth tutorial [closed]

Is there any tutorial available on how to use DotNetOpenAuth library? How to use the database which comes with the ASP.NET Authentication and extend it to use OpenAuth library? Thanks
0
votes
0answers
61 views

Exception when running DotNetOpenAuth sample

I'm running the DotNotOpenAuth samples, specifically the OAuth2/OAuthClient (SampleWcf2.aspx) file so that it uses the OAuth2/OAuthAuthorizationServer project. I'm able to authorize just fine (this ...
0
votes
1answer
95 views

Which dll used to add “Database.ProfileFields” in DotNetOpenAuth? [closed]

I want to use the Dot Net Open Auth in my web application, I am following This link to do it. I am dont know what namespace should be used to add "Database.ProfileFields" here is all my code HTML ...
0
votes
1answer
34 views

How to disable dynamic sign up with Open ID provider during client authentication flow?

Background: I'm using Open ID authentication in my asp.net website. Here is how it works currently - User would pick an Open ID provider from dropdown (google/yahoo/myopenid/etc..) and then click on ...
1
vote
1answer
265 views

ASP.NET 4.5 OAuth using MySQL

I've created a project using the default templante from ASP.NET 4.5 Web Forms Site and set my MembershipProvider to MySQLMembershipProvider, but the OAuth is using another storage in the App_Data ...
0
votes
1answer
224 views

Get authorization code from refreshtoken

I am using dotnetopenauth and working with google api. My problem is to get authorization code from my saved refresh token. If i can get that code then i can get accesstoken. i want to get that code ...
0
votes
2answers
135 views

Retrieve Authentication Provider Type Using Claimed Identifier

I've browsed the documentation on DotNetOpenAuth and cannot find a method to retrieve the authentication provider type based off of the ClaimedIdentifier. I'm looking for a method akin to the ...
0
votes
0answers
121 views

Refreshtoken in dotnetopenauth confusion

I am using dotnetopenauth to authenticate user using gmail.I am little bit confused about refresh token. As we know that accesstoken provided by gooogle expires in 1 hours. So here i explain what i ...
4
votes
0answers
236 views

Unable to use PLAINTEXT signature with a DotNetOpenAuth ServiceProvider

I am building an OAuth 1.0(a) authorization server using DotNetOpenAuth (NuGet package DotNetOpenAuth.OAuth.ServiceProvider, version = 4.1.4.12333). The server is hosted in an ASP.NET application but ...
1
vote
1answer
395 views

DotNetOpenAuth, AuthenticationStatus.Failed - Message signature was incorrect

Got problem with my asp.net site (not MVC, not WebForms). Form looks like: <form method="post" enctype="multipart/form-data" action="http://mysite.com/register/"> Site using REWRITE-URL C# ...
0
votes
0answers
175 views

Using DotNetOpenAuth to get Google contacts, passing keywords doesn't work?

So I've tweaked the sample code/application block that comes with DotNetOpenAuth to try and include the "q" parameter to do a keyword search for contacts (per documentation on from Google v3 API), but ...
0
votes
1answer
123 views

OAuth2 - Where did ClientSecret go?

I'm trying to write an ASP.NET application that uses the Google Calendar Service. To do so, I'm using the example shown here. This is a TasksService application, but the methods should be pretty ...
4
votes
5answers
1k views

MembershipCreateUserException - The username supplied is invalid

On this line i am getting an exception - OAuthWebSecurity.CreateOrUpdateAccount(provider, providerUserId, model.UserName); System.Web.Security.MembershipCreateUserException: The username supplied ...
1
vote
1answer
117 views

DotNetOpenAuth OpenId Provider Intermittent issue while using with .Net 4.0

I was trying to use Sample application OpenIdProviderWebForms Application from DotNetOpenAuth-4.0.0.12084. It was working fine with OpenIdRelyingPartyWebForms when I used it as it is but suddenly I ...
0
votes
1answer
190 views

What does IsReturnUrlDiscoverable do?

I'm using the following sample code from the DotnetOpenAuth Samples (OpenId Controller in OpenIdProviderMvc) public ActionResult ProcessAuthRequest() { if (ProviderEndpoint.PendingRequest == ...
1
vote
1answer
215 views

Does an OpenID realm have to be the base URL of the web site?

As a continuation of this question, there's an issue I'm having with dotnetopenauth. Basically, I'm wondering if the realm specified in the RP has to be the actual base URL of the application? That ...
3
votes
2answers
1k views

Stuck using Microsoft.Web.WebPages.OAuth.OAuthWebSecurity in an MVC application

I just don't understand some code in the Microsoft.Web.WebPages.OAuth namespace, specifically the OAuthWebSecurity class. It's this method here :- internal static void ...
2
votes
2answers
520 views

OpenIdProvider.GetRequest() returns null

As somewhat of a continuation of this question, I'm having problems with dotnetopenauth. I navigate to my relying party code and create the request, however when my provider receives the request ...
4
votes
2answers
599 views

Missing DotNetOpenAuth.ApplicationBlock in OpenID+OAuth

I am implementing OpenID+OAuth in my ASP.NET WebForm (using .NET Framework 3.5) application, found example on net https://groups.google.com/forum/?fromgroups=#!topic/dotnetopenid/xQYkE6sUZYU But I ...
1
vote
1answer
720 views

Is it possible to request a user's full profile using DotNetOpenAuth and the LinkedIn Developer Toolkit?

When requesting an access token using DotNetOpenAuth, it is only authenticating a basic user profile. at Authorization.BeginAuthorize(); Is there some way of asking the user to authenticate against ...
0
votes
1answer
225 views

OAuth2Client get extra Facebook data

I'm trying to work out how I can request a Facebook user's email address with a custom OAuth2Client, however there is a severe lack of documentation to do this from what I can find on Google. I have ...
1
vote
1answer
300 views

ASP.Net 4.5 OAuth fails with a 400 response, out of the box

I fired up VS 2012 and created a new website with the oAuth templates and created an application with Facebook to test it out. I modified the AuthConfig.cs to contain the app id and app secret, but my ...
0
votes
1answer
130 views

DotNetOpenAuth and Quickbooks

I'm need to develop a .NET 3.5 application that imports data from Quickbooks, and I decided to use DNOA to OAuthorize with them. I downloaded the latest available version (4.1.something), took a look ...
0
votes
1answer
85 views

DotNetOpenAuth Response object & property is set but it throws a NullException

So! My head just exploded because this seems very strange to me. Using debug mode, I can watch the Claimsresponse come through into the method, its populated, and so is the Email property. But when I ...
0
votes
1answer
425 views

DotNetOpenAuth new OpenIdRelyingParty().GetResponse() is null?

I'm using this tutorial: http://www.dotnetopenauth.net/developers/help/programmatic-openid-relying-party/ My GetResponse() call always returns null, I've also added localhost to my white list in the ...
0
votes
0answers
930 views

Using DotNetOpenAuth.AspNet how to check, on post back, if the response is from a provider

I'm having a play around with the Microsoft extensions to DotNetOpenAuth which provide some handy presets for well known providers. My problem is that there seems to be no way, on post back, to tell ...
0
votes
0answers
365 views

Use of an OAuth access token in YQL

Can someone please provide some sample .net code which uses an OAuth access token for retrieving a users private data using YQL. I am trying to import Yahoo contacts in an Aspnet MVC 3 application. ...
3
votes
1answer
223 views

how to retrieve profile Id with DotnetOpenAuth

How to retrieve profile Id with DotnetOpenAuth to get the data from google Analytics API. I got the oAuth Token But when tried to retrieve data using this token, I got the Exception -- Execution ...
1
vote
1answer
229 views

The OpenID Provider issued an assertion for an Identifier whose discovery information did not match

I used sample code from DotNetOpenAuth.net to become my own OpenID Provider (OpenIDProviderWebForm) everything worked fine and I was able to test my OP against NerdDinner. now I want to customize the ...
0
votes
3answers
918 views

How to use DotNetOpenAuth in my website

I have been trying to implement login structure like the one used by stack overflow in asp.net. I have read many blogs and previous questions, from which I found out that it uses open id .After ...
1
vote
1answer
470 views

DotNetOpenAuth and Hotmail Sign In

How to retrieve signin email id of Hotmail using DotNetOpenAuth I have tried this code from sample it gives name and not email id IAuthorizationState authorization = ...
0
votes
1answer
69 views

HttpApplicationState.Lock() in Mono 2.10

I am using DotNetOpenAuth in conjunction with Mono 2.10. When context.Application.Unlock() is called, an exception is thrown indicating the lock was never acquired in the first place. I've modified ...
0
votes
2answers
212 views

Logout From LinkedIN using asp.net

I am using openid in my asp.net application.For Linkedin ,I have used javascript api I am able login in my site but I want to know how to logout from my site which will automatically logs me out from ...

1 2 3 4