1

我已经设法进入 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 错误列表中。我不能为我的生活弄清楚出了什么问题!

4

1 回答 1

0

固定的。需要用 request_secret 对认证头进行签名

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

:)

于 2012-06-15T12:29:01.257 回答