我正在OAuth 1.0
使用iOS app
simple -oauth1项目中实现。我使用Withings api
了所以我从 simple-oauth1 进行了一些修改(如消费者 oauth 密钥、密钥、回调 url ......)。我插入
NSLog(request.URL.absoluteString); 像下面的代码(它在 OAuth1Controller.m 中)
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)
request navigationType:(UIWebViewNavigationType)navigationType
{
if (_delegateHandler) {
NSString *urlWithoutQueryString = [request.URL.absoluteString componentsSeparatedByString:@"?"][0];
NSLog(request.URL.absoluteString);
if ([urlWithoutQueryString rangeOfString:OAUTH_CALLBACK].location != NSNotFound)
{
有了那个代码,
我点击
OAuth login
按钮,然后 webview 显示登录页面。我输入 ID/密码。
Webview 显示帐户允许页面。我点击“允许”按钮。(NSLog 显示http://oauth.withings.com/account/authorize?acceptDelegation=true&oauth_consumer_key=blahblah&oauth_nonce=blahblah&oauth_signature=blahblah&oauth_signature_method=HMAC-SHA1&oauth_timestamp=blahblah&oauth_token=blahblah&oauth_version=1.0&userid=blahblah)
完成上述过程后,webview 显示 oauth_token= blahblah, oauth_verifier=blahblah 的“ACCESS GRANTED”页面。但它不会重定向到回调 url,它停留在“ACCESS GRANTED”页面。
我已经这样做了大约 2 周,但我找不到为什么会发生这种情况的答案。