我正在用swift构建一个iOS应用程序。当它重定向到OAuth时。它粘在下面附着的图像上。 web page after twitter authentication并且它没有重定向回应用程序
TwitterClient.SharedInstance.requestSerializer.removeAccessToken()
TwitterClient.SharedInstance.fetchRequestTokenWithPath("oauth/request_token", method: "POST", callbackURL: NSURL(string: "http://my.vixxxxxxxp.com:2403/auth/twitter, twitterClient://oauth-callback"), scope: nil, success: { (requestToken: BDBOAuth1Credential!) -> Void in
print("got the token request", requestToken.token)
let authURL = NSURL(string: "https://api.twitter.com/oauth/authorize?oauth_token=\(requestToken.token)")
UIApplication.sharedApplication().openURL(authURL!)
}) { (error: NSError!) -> Void in
print("failed to get the token request")
print(error)
}
这就是我在info.plist中添加URL Schemes的方法'twitterClient:// oauth-callback'
这不对。我想知道添加它的正确方法。