Foursquare iOS API

问题描述 投票:0回答:2

我正在尝试找出如何修改此处找到的 Foursquare iOS API“BZFoursquare”:https://github.com/baztokyo/foursquare-ios-api。 在他们的示例中,他们使用一体化

ViewController
。不过,我将拥有多个
ViewControllers
,因此希望拥有一个带有常用代码的
AppController 
。在ios5下我需要怎么做?

ios foursquare
2个回答
4
投票

请参阅此链接https://github.com/Constantine-Fry/Foursquare-API-v2/tree/master/Foursquare2-iOS。轻松集成 iPhone 的 foursquare API。

嗨,马可, 将 Foursquare2 文件夹添加到您的项目中并检查视图控制器中的身份验证。请参阅以下代码。这会对你有所帮助。

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.title = @"Foursquare";
    //check the authentication
    if ([Foursquare2 isNeedToAuthorize]) {
       //If needed show the webview 
        webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
        NSString *url = [NSString stringWithFormat:@"https://foursquare.com/oauth2/authenticate?display=touch&client_id=%@&response_type=code&redirect_uri=%@",OAUTH_KEY,REDIRECT_URL];
        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];
        [webView loadRequest:request];
        [webView setDelegate:self];
        [self.view addSubview:webView];
        [webView release];
        mTableView.hidden = YES;
    }else{
        //Show your view
        mTableView.hidden = NO;
        [Foursquare2 searchVenuesNearByLatitude:@"40.763" longitude:@"-73.990" accuracyLL:nil altitude:nil accuracyAlt:nil query:@"" limit:@"15" intent:@"" callback:^(BOOL success, id result){
            if (success) {

                tableData = [[FoursquareParser parseSearchVenuesResultsDictionary:(NSDictionary*)result] retain];
                [mTableView reloadData];

            }
        }];

    }
}

0
投票

您还可以使用 oAuth 来登录 foursquare,因为它非常容易实现。在 oAuth 2.0 中,您必须获取访问令牌,并使用该访问令牌您可以获取用户详细信息,例如朋友和个人资料信息。 oAuth 是两步验证方法,要详细实现,由于您是新手,所以我为您找到了一个很好的教程,使用 Foursquare 登录

© www.soinside.com 2019 - 2024. All rights reserved.