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?