dotnetopenauth

Twitter update access with OAuth and DotNetOpenAuth

I'm trying to use OAuth with .NET (DotNetOpenAuth) to send updates to a Twitter account via a web application. I understand the basic workflow of OAuth and Twitter. Where I'm confused if is it useful in a server web application? I don't want any user interaction. But how it seems after an application start, the request token needs to be...

On what .NET Framework(s) is DotNetOpenAuth available?

Most (all?) OAuth resources - both information about the protocol and code libraries for easily using them in your own applications - one seems to find on the internet seem to assume the application you are using it in is a web application. I would however like to start using OAuth in my windows mobile Twitter client for interactions wi...

How to add other Open ID providers to OpenIdRelyingParty?

I'm trying to implement a relying party (the web site I'm working on) using DotNetOpenAuth on ASP.NET MVC. I'm using the current version 3.3.1. Using the included MVC sample, I can see that the OpenIdRelyingParty class can automatically recognize and redirect to some open ID providers such as myopenid.com and Yahoo based on the ID spec...

The HTTP verb HEAD is unrecognized and unsupported

After attaching of great DotNetOpenAuth project to my site, I have got a lot of unhandled exceptions like below. Could you please help me with this? Event message: An unhandled exception has occurred. Event time: 1/9/2010 5:59:04 AM Event time (UTC): 1/9/2010 11:59:04 AM Event ID: fa8b51280ff94c52b24658def6e0a530 Event sequence: 9 Even...

oauth_verifier is not passed using DotNetOpenAuth's Webconsumer

I receive back a good oauth_verifier value from the server, but it is not being passed on via the ProcessUserAuthorization call to the access_token endpoint. I'm using DotNetOpenAuth 3.3.1, and the WebConsumer implementation. The server I'm working with is using OAuth 1.0a not 1.0.1. Do I need to force DotNetOpenAuth to use 1.0a? 2010...

dotnetopenauth XRDS Clear Cache

I am using dotnetopenauth as an openid provider and have changed the Response.ApplyAppPathModifier file to a different file but the old one is always returned. The XRDS seems to be cached. <%=new Uri(Request.Url, Response.ApplyAppPathModifier("~/server.aspx"))%> Where is is cached? Can I clear this? Any help appreciated. Thanks, Gr...

How do I tweet, using the DotNetOpenAuth library?

I just downloaded the DotNetOpenAuth library and ran the AuthConsumer demo. It is an excellent library so far! Everything worked as advertised, which has not been my experience with a lot of Facebook and Twitter sample code that I have been working with recently. What I am trying to figure out is: How do I tweet using this library? I ...

DotNetOpenAuth Login Fails, But receiving data in querystring

I am trying to set up OpenID on an ASP.Net 2 website that I am making right now, and using DotNetOpenAuth. But it seems I've run into a brick wall that won't budge no matter how many things I try. While trying to sign-in with Google I am getting "Web request to 'https://www.google.com/accounts/o8/ud' failed." as response. The weird thi...

OpenID "Unsolicited assertions are not allowed from 1.0 OpenID Providers" error

We are attempting to implement OpenID (as a relying party) using the OpenID jQuery plugin (like StackOverflow) and DotNetOpenAuth. We can't get AOL to work. DotNetOpenAuth redirects using http://openid.aol.com/{username} just fine, but when we successfully authenticate and it redirects back to our site, this code is run: (abbreviated) ...

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 cookies, and loading from an external machine. In fact, I eventually did discover that the problem is specific to my own machine; when I publishe...

How can create a webapplication in dotnetnuke framework?

I am very new to dotnetnuke. and want to know. steps to create and build a webapplication in dotnetnuke. how can we add module using dotnetnuke. how can we handle database in sqlsever 2005 or later on it. Want to know briefly and understanding explanation. ...

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 provider and just using the standard FormsAuthentication for cookies etc. The current user table in the DB has: UserId (PK, uniqueidentifier)...

Single Sign On-- SSO

Please I would like someone to tell me if dotNetOpenAuth single-sign-on. All I want to achieve is to be able to seamlessly logging to all domains without redirect to third party system for authorisation or Authentication within a mixture programming platforms e.g (PHP or .Net) ...

DotNetOpenAuth authentication

Does DotNetOpenAuth still redirect users to provider website i.e.( (OpenId) for authentication and authorisation from OAuth) ...

OpenId ASP MVC Authentication with long expiry

Stackoverflow uses OpenId as many other websites. However, I rarely need to provide my OpenId to Stackoverflow while with other OpenId enabled websites, I have to do it once a day or week. This suggests to me that the expiry of the session is with the website and not the OpenId provider. Looking at the DotNetOpenId code in ASP MVC, I c...

Any examples of implementing DotNetOpenId on ASP.NET State Server?

We have dotopenopenId implemented on our web farm which currently uses scaleout. We want to replace ScaleOut with ASP.NET State Server, but I'm wondering if there are any examples of the interfaces that need to be built for the AssociationStore and the ProviderStore. ...

DotNetOpenId runtime exception after initial login

I'm trying to setup the simplest asp.net/dotnetopenid scenario. I followed the steps outlined in the following blog: http://blog.nerdbank.net/2008/04/how-to-add-openid-to-your-aspnet-web.html. After adding the server control, entering my openid info, and clicking "Login", a runtime exception (NullReferenceException) is being thrown on ...

How to test Sample Solution from dotnetopenauth

I downloaded the latest dotnetopenauth from here https://www.ohloh.net/p/dotnetopenauth/download?package=DotNetOpenAuth&amp;release=3.4.1 I open the sample solution, now i just want to test "OAuthServiceProvider", how do i do this? it doesn't work. Project Link: http://www.dotnetopenauth.net/ ...

AOL OpenID response too long

I've written an application using the DotNetOpenAuth library, which allows users to authenticate against a number of OpenID providers. All of them work fine except for AOL, which for one reason or another creates a return URL that is over 2200 characters long, a length that exceeds the maximum URL length (2048) for most browsers. Has a...

How to get started using DotNetOpenAuth

I created a simple page using the code provided by this page (the first sample): http://www.dotnetopenauth.net/developers/code-snippets/programmatic-openid-relying-party/ But I can't seem to get it to work, I can redirect to the provider but when the provider redirects back to my page, I get error 500, "The request was rejected by the ...