I'm trying to request an authentication token:

public static void RequestAuthorization(WebConsumer consumer)
{
    var extraParams = new Dictionary<string, string> { 
        { "oauth_token", string.Empty},
        { "oauth_callback", "http://www.ihighfive.com/" },
    };

    var req = consumer.PrepareRequestUserAuthorization(callback, extraParams, null);    
    consumer.Channel.Send(req);
}

Problem is, when I run .PrepareRequestUserAuthorization() I get the following error

Expected IProtocolMessage message but received no recognizable message.

Inspecting the request/response with Fiddler, I can see that the response returns(values obfusticated):

{ "oauth_token" : "this-is-the-oauth-token", 
"oauth_token_secret" : "this-is-the-oauth-secret-token", 
"oauth_callback_confirmed" : true, 
"urlToSendUserTo" : "http://blah.blah.com/api/OAuthAuthorizeToken.aspx?oauth_token=token-value-is-really-long"}

To me, this appears to be a good response. If I visit the urlToSendUserTo, it works, and then passes me through to my initial callback url. So I guess DNOA is having problems parsing the response, but I can't see why.

link|improve this question

Check the mime types sent and received. Looks like the response is json/text, but your WebConsumer maybe expecting something else. What is your WebConsumer sending in the accept header? – Diego Feb 10 at 19:59
There does not appear to be any accept header in the request. – Corey Downie Feb 10 at 20:41
feedback

1 Answer

up vote 1 down vote accepted

What protocol is the server using? It's not OAuth 1.0 but you're using OAuth 1.0 classes in DotNetOpenAuth. OAuth 1.0 mandates that the response be in application/x-www-form-urlencoded format but in your snippet of the response it's clearly in JSON instead.

Also, I've never seen the urlToSendUserTo parameter in any spec, and I don't know why you're sending an empty oauth_token as an extra parameter in the request.

It seems like you and/or the server are speaking very different languages.

link|improve this answer
The server claims to be using OAuth 1.0a (dialawg.com/api/#nav=view%3DapiIntro). That empty oauth_token MAY be omitted (as is mentioned at the bottom of the link you posted). I've tried both with and without it. – Corey Downie Feb 12 at 2:35
@CoreyDownie I would suggest you email those dialawg folks and ask them why they're sending you JSON responses then. That's definitely not OAuth 1.0a compliant. – Andrew Arnott Feb 12 at 15:35
I'll bring that up with them, thanks Andrew. – Corey Downie Feb 13 at 1:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.