Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anyone got an OAuthClient working for Tumblr using DotNetOpenAuth.AspNet?

I have based it on the Twitter and LinkedIn built in clients. But VerifyAuthentication always returns false following a successful login and callback from the Tumblr login page. VerifyAuthenticationCore therefore never gets called. Correct app keys are being passed in.

public class TumblrOAuthClient : OAuthClient 
{
    public static readonly ServiceProviderDescription TumblrServiceDescription = new ServiceProviderDescription
    {
        RequestTokenEndpoint =
            new MessageReceivingEndpoint(
                "http://www.tumblr.com/oauth/request_token",
                HttpDeliveryMethods.GetRequest | HttpDeliveryMethods.AuthorizationHeaderRequest),
        UserAuthorizationEndpoint =
            new MessageReceivingEndpoint(
                "http://www.tumblr.com/oauth/authorize",
                HttpDeliveryMethods.GetRequest | HttpDeliveryMethods.AuthorizationHeaderRequest),
        AccessTokenEndpoint =
            new MessageReceivingEndpoint(
                "http://www.tumblr.com/oauth/access_token",
                HttpDeliveryMethods.GetRequest | HttpDeliveryMethods.AuthorizationHeaderRequest),
        TamperProtectionElements = new ITamperProtectionChannelBindingElement[] { new HmacSha1SigningBindingElement() },
    };

    public TumblrOAuthClient(string consumerKey, string consumerSecret)
        : this(consumerKey, consumerSecret, new AuthenticationOnlyCookieOAuthTokenManager()) { }

    public TumblrOAuthClient(string consumerKey, string consumerSecret, IOAuthTokenManager tokenManager)
        : base("tumblr", TumblrServiceDescription, new SimpleConsumerTokenManager(consumerKey, consumerSecret, tokenManager)) {
    }

    protected override AuthenticationResult VerifyAuthenticationCore(AuthorizedTokenResponse response)
    {
        ...
    }

}

Is there something specific to Tumblr that would make it's OAuth flow work differently to Twitter and LinkedIn?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.