XCode OAuth请求access_token call" 401 3->需要HTTP / 1.1 401授权和#34;

时间:2012-06-15 10:37:21

标签: objective-c xcode magento oauth

我设法了解了Magento实施的OAuth协议的第三部分

http://www.magentocommerce.com/api/rest/authentication/oauth_authentication.html

首先请求令牌调用返回一个令牌,我在UIWebView中向用户显示授权对话框,并在用户按下“授权”后提取令牌/验证器。

我使用这些参数调用access_token url

OAuth realm="", 
oauth_timestamp="1339756083",
oauth_nonce="d1dc184d236756c42210b746a887edb5bd69cf44", 
oauth_signature_method="HMAC-SHA1", 
oauth_consumer_key="{censored}", 
oauth_version="1.0", 
oauth_token="912i72lcu6vzlwk6a3vdj4a3sstbdzqp",
oauth_token_secret="t5cg9qlykkk9411iv0rbul0gnw9fsa0m", 
oauth_verifier="9vu02kbymodo63pve091otffvy53rhlf",
oauth_signature="fDwWGeJhatIX6kK4nb%2Bagp4C%2FxU%3D"

这是我的Obj-C代码的一部分

NSMutableArray* values = [[NSMutableArray alloc]initWithObjects:self.requestToken,self.requestSecret,verifier, nil];
NSMutableArray* keys = [[NSMutableArray alloc]initWithObjects:@"oauth_token", @"oauth_token_secret", @"oauth_verifier", nil];
NSDictionary* extraParams = [[NSDictionary alloc] initWithObjects:values forKeys:keys];

OAuth* oauth = [[OAuth alloc] initWithConsumerKey:OAUTH_CONSUMER_KEY andConsumerSecret:OAUTH_CONSUMER_SECRET];

NSString* authHeader = [oauth oAuthHeaderForMethod:@"POST" andUrl:ACCESS_TOKEN_URL andParams:extraParams];
NSLog(@"%@", authHeader);
ASIHTTPRequest* request = [[ASIHTTPRequest alloc] initWithURL:[NSURL URLWithString:ACCESS_TOKEN_URL]];
[request addRequestHeader:@"Authorization" value:authHeader];

这是洋红色告诉我的回报

2012-06-15 12:28:06.052 Versmissen[2175:707] 401 3-> HTTP/1.1 401 Authorization Required  -> (null) -> http://{censored}/oauth/token

但是,401 3不在API中解释的OAuth错误列表中。我不能为我的生活弄清楚出了什么问题!

1 个答案:

答案 0 :(得分:0)

固定。需要使用request_secret

对身份验证标头进行签名

NSString * authHeader = [self.oauth oAuthHeaderForMethod:@“POST”andUrl:ACCESS_TOKEN_URL andParams:extraParams andTokenSecret:self.requestSecret];

:)