Text after "
I'm using OAuth's Trello's developer API implementation to post a list stuff.
I've successfully made a request and got oauth_token
for me and oauth_token_secret
back
but when I call, oauth_token
passing that I just received, I did not get a response to 'App'
Can anyone help
Edit:.? Here's what I'm getting back to from
and here the authority header is sending (I escaped to C #)
"OAuth oauth_version = \" 1.0 \ " , oauth_signature_method = \ "HMAC-SHA1 \", oauth_nonce = \ "8335006 \", oauth_timestamp = \ "1414663625 \", oauth_consumer_key = \ "9612 Ika 23c7bdd3eca60dc8c2a8159c \", oauth_signature = \ "M6sLyyfHGYXOtQnLJexDx96kbFo = \", oauth_token = \ "8d0e43fd0cc67726567d49ae5e818852 This is an error on the end of NG or Trello.
Edit: I am using RestSharp to call Trello API, as below: var Client = New RestSharp.RestClient ("https://trello.com/"); Var Request = New RestSharp.RestRequest ("1 / OAuthAuthorizeToken", Method.GET);
Edit: Here is the complete RestSharp code:
on Customer = New RestSharp.RestClient ("https : //trello.com/ "); Var Request = New RestSharp.RestRequest ("1 / OAuthAuthorizeToken", Method.GET); Uri uri = new Uri (string.format ("{0} / {1}", client .busub, request.resources)); String authHeader = Generated authorization header (Yuri); // This is the output of GenerateAuthorizationHeader () // string authHeader = "OAuth oauth_version = \" 1.0 \ ", oauth_signature_method = \" HMAC-SHA1 \ ", oauth_nonce = \" 8,335,006 \ ", oauth_timestamp = \" +1414663625 \ ", Oauth_consumer_key = \" 9612 eka 23c7bdd3eca60dc8c2a8159c \ ", oauth_signature = \" M6sLyyfHGYXOtQnLJexDx96kbFo = \ ", oauth_token = \" 8d0e43fd0cc67726567d49ae5e818852 \ ""; Request.AddHeader ("authorization", authHeader);
GenerateAuthorizationHeader method uses OAuth.OAuthBase
sign to generate timestamp and OAuth request.
It seems that it is a Trello problem ... The user may, from the sound of things Was the wrong key. You are 100% sure that the key is right.
Comments
Post a Comment