我终于找到了问题所在。
社交网络中存在一个错误,它表明 Apple 总是将字符串附加"?access_token=[ACCESS_TOKEN]"
到 url 字符串的末尾。
据此,如果您在 URL 字符串之前放置一个参数,则该 URL 无效,因为您将有两个“?” 在字符串中。
为避免这种情况,我使用 NSURLConnection 类以这种方式管理连接:
NSString *appendChar = [[url absoluteString] rangeOfString:@"?"].location == NSNotFound ? @"?" : @"&";
NSString *finalURL = [[url absoluteString] stringByAppendingFormat:@"%@access_token=%@", appendChar, self.facebookAccount.credential.oauthToken];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:finalURL]];
NSURLResponse *response;
NSError *error;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if (error)
[self.delegate facebookConnection:self didFailWithError:error];
else
{
NSError *jsonError;
NSDictionary *resultDictionnary = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];
if (jsonError)
[self.delegate facebookConnection:self didFailWithError:jsonError];
else if ([resultDictionnary valueForKey:@"error"])
{
NSDictionary *errorDictionary = [resultDictionnary valueForKey:@"error"];
NSError *facebookError = [NSError errorWithDomain:[errorDictionary valueForKey:@"message"] code:[[errorDictionary valueForKey:@"code"] integerValue] userInfo:nil];
[self.delegate facebookConnection:self didFailWithError:facebookError];
}
else
[self.delegate facebookConnection:self didFinishWithDictionary:resultDictionnary httpUrlResponse:response];
}
首先,我测试字符串中是否存在参数字符并附加正确的字符。我以我处理错误的方式给你作为奖励。
我仍然使用社交框架来获取凭据并连接用户:
NSDictionary *accessParams = @{ACFacebookAppIdKey:kFacebookAppID, ACFacebookPermissionsKey:@[@"email", @"user_photos", @"user_activities", @"friends_photos"]};
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
[accountStore requestAccessToAccountsWithType:accountType options:accessParams completion:^(BOOL granted, NSError *error)
{
if (granted)
{
NSArray *facebookAccounts = [accountStore accountsWithAccountType:accountType];
if ([facebookAccounts count] > 0)
{
self.facebookAccount = [facebookAccounts objectAtIndex:0];
self.accessToken = self.facebookAccount.credential.oauthToken;
[self.delegate facebookConnectionAccountHasBeenSettedUp:self];
}
}
else
[self.delegate facebookConnection:self didFailWithError:error];
}];
在此代码中,我不处理多个 facebook 帐户,但您可以轻松地转换该代码段以用您自己的方式处理它。此外,连接是同步发送的,因为我使用 GCD 来避免阻塞我的界面,但是您可以实现内置在 NSURLConnection 类中的异步方法。
希望这会对某人有所帮助!