gpt4 book ai didi

ios - 用于验证 API 的 OAuth2 - 无法重定向回我的应用程序

转载 作者:可可西里 更新时间:2023-11-01 05:33:48 24 4
gpt4 key购买 nike

我正在尝试使用 Trakt API获取电视节目列表和其他数据。但是,我坚持使用 Trakt 验证我的应用程序。我有我的 API key 、 secret 和重定向 URI,但我正在为如何授权我的应用程序而苦苦挣扎。我尝试了以下方法:

方法一使用Trakt的示例代码:

-(void)authorisation{

NSString *redirectURI = @"http://myappredirect://";
NSString *clientID = @"MY_CLIENT_ID";
NSString *clientSecret = @"MY_CLIENT_SECRET";
NSString *username = @"USERNAME";
NSString *authURL = [NSString stringWithFormat:@"https://trakt.tv/oauth/authorize?response_type=code&client_id=%@&redirect_uri=%@&state=state&username=%@", clientID, redirectURI, username];

NSURL *URL = [NSURL URLWithString:authURL];

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
[request setHTTPMethod:@"GET"];

[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];

[[UIApplication sharedApplication] openURL:URL];

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request
completionHandler:
^(NSData *data, NSURLResponse *response, NSError *error) {

if (error) {
// Handle error...
return;
}

if ([response isKindOfClass:[NSHTTPURLResponse class]]) {
NSLog(@"Response HTTP Status code: %ld\n", (long)[(NSHTTPURLResponse *)response statusCode]);
NSLog(@"Response HTTP Headers:\n%@\n", [(NSHTTPURLResponse *)response allHeaderFields]);
}

NSString* body = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"Response Body:\n%@\n", body);
}];
[task resume];
}

这会在我的 iPhone 上打开 Safari,成功加载网页,Trakt 要求为我的应用程序授权我的帐户。我点击“授权”,然后 Safari 加载一个 URL“myappredirect//?code=a_really_long_string_of_characters”,但出现错误

Safari cannot open the page because the server cannot be found.

当我在 Safari 中输入 myappredirect:// 时,我的应用程序打开了,所以我想知道 Safari 加载的 URL 是否不正确,因为它在双//之前缺少分号?

所以我尝试向我的应用程序添加一个 UIWebView 并在其中加载 URL。它会加载 URL,但这次在我点击“授权”后,它不会更改网页。 UIWebView 委托(delegate) webViewDidStartLoad 确实告诉我它会在我点击“授权”后加载页面,但屏幕上没有任何变化。

方法二,使用OAuth2Client :

-(void)setupWebview{

webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)];
webView.backgroundColor = [UIColor greenColor];
webView.delegate = self;
[self.view addSubview:webView];

}

-(void)webViewDidStartLoad:(UIWebView *)webView{
NSLog(@"webViewDidStartLoad");
}

-(void)secondMethod{
NSString *redirectURI = @"http://myappredirect://";
NSString *clientID = @"MY_CLIENT_ID";
NSString *clientSecret = @"MY_CLIENT_SECRET";
NSString *username = @"USERNAME";
NSString *authURL = [NSString stringWithFormat:@"https://api-v2launch.trakt.tv/oauth/authorize?response_type=code&client_id=%@&redirect_uri=%@&state=state&username=%@", clientID, redirectURI, username];
NSString *tokenURL = @"https://api-v2launch.trakt.tv";

[[NXOAuth2AccountStore sharedStore] setClientID:clientID
secret:clientSecret
authorizationURL:[NSURL URLWithString:authURL]
tokenURL:[NSURL URLWithString:tokenURL]
redirectURL:[NSURL URLWithString:redirectURI]
forAccountType:@"Trakt"];

[[NXOAuth2AccountStore sharedStore] requestAccessToAccountWithType:@"Trakt"
withPreparedAuthorizationURLHandler:^(NSURL *preparedURL){
// Open a web view or similar
[webView loadRequest:[NSURLRequest requestWithURL:preparedURL]];
}];
}

-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:YES];

[[NSNotificationCenter defaultCenter] addObserverForName:NXOAuth2AccountStoreAccountsDidChangeNotification
object:[NXOAuth2AccountStore sharedStore]
queue:nil
usingBlock:^(NSNotification *aNotification){
// Update your UI
NSLog(@"Success");
}];

[[NSNotificationCenter defaultCenter] addObserverForName:NXOAuth2AccountStoreDidFailToRequestAccessNotification
object:[NXOAuth2AccountStore sharedStore]
queue:nil
usingBlock:^(NSNotification *aNotification){
NSError *error = [aNotification.userInfo objectForKey:NXOAuth2AccountStoreErrorKey];
// Do something with the error
NSLog(@"Error");
}];
}

在这里,我不确定 token URL 是什么。同样,我的 UIWebView 完美加载了 URL,但在我按下“授权”后,它并没有更改其网页。委托(delegate)方法 webViewDidStartLoad 确实告诉我它加载了另一个页面,但屏幕上没有任何变化。此外,NXOAuth2 通知均未发送。

我是 OAuth2 的新手,非常感谢任何人可能提供的任何帮助。如果这是一个愚蠢的问题,我深表歉意,我真的很纠结该怎么做,并且对为什么在我授权 Trakt 后 Safari 无法打开我的应用程序感到困惑。

谢谢。

最佳答案

NSString *redirectURI = @"myappredirect://";

代替

NSString *redirectURI = @"http://myappredirect://";

关于ios - 用于验证 API 的 OAuth2 - 无法重定向回我的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28795823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com