iOS: сбой запроса foursquare - PullRequest
       2

iOS: сбой запроса foursquare

0 голосов
/ 06 февраля 2012

Мне поручили работать с foursquare только недавно.У меня есть приложение, которое должно пройти аутентификацию и получить доступ к среде foursquare.У меня возникли проблемы со следующим кодом для доступа к регистрации.Я уже успешно выполнил аутентификацию, но дело в том, что, когда я сделал запрос на регистрацию, появляется errorType invalid_auth код 401.Я просто не знаю, что с этим не так.

Вот мой полный код;Я использую fsq обертку, которую я нашел в github:

#import "FSQViewController.h"

#define kClientID      @"XXXXXXXXXXXXXXXXXXXXXXX"
#define kCallbackURL   @"invitation://foursquare"

@interface FSQViewController()
@property(nonatomic,readwrite,strong) BZFoursquare *foursquare;
@property(nonatomic,strong) BZFoursquareRequest *request;
@property(nonatomic,copy) NSDictionary *meta;
@property(nonatomic,copy) NSArray *notifications;
@property(nonatomic,copy) NSDictionary *response;
@end


@implementation FSQViewController

@synthesize foursquare = foursquare_;
@synthesize request = request_;
@synthesize meta = meta_;
@synthesize notifications = notifications_;
@synthesize response = response_;

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

#pragma mark - View lifecycle

- (id) initWithCoder:(NSCoder *)aDecoder{
    self = [super initWithCoder:aDecoder];
    if(self){
        self.foursquare = [[BZFoursquare alloc]initWithClientID:kClientID callbackURL:kCallbackURL];
        foursquare_.version = @"20120206";
        foursquare_.locale = [[NSLocale currentLocale]objectForKey:NSLocaleLanguageCode];
        foursquare_.sessionDelegate = (id<BZFoursquareSessionDelegate>) self;
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
}

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

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}



#pragma mark -
#pragma mark BZFoursquareRequestDelegate

- (void)requestDidFinishLoading:(BZFoursquareRequest *)request {
    NSLog(@"test");
    self.meta = request.meta;
    self.notifications = request.notifications;
    self.response = request.response;
    self.request = nil;
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}

- (void)request:(BZFoursquareRequest *)request didFailWithError:(NSError *)error {
    NSLog(@"HERE > %s: %@", __PRETTY_FUNCTION__, error);
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:[[error userInfo] objectForKey:@"errorDetail"] delegate:nil cancelButtonTitle:NSLocalizedString(@"OK", @"") otherButtonTitles:nil];
    [alertView show];
    self.meta = request.meta;
    self.notifications = request.notifications;
    self.response = request.response;
    self.request = nil;
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}

#pragma mark -
#pragma mark BZFoursquareSessionDelegate

- (void)foursquareDidAuthorize:(BZFoursquare *)foursquare {
    NSLog(@"authorized!");
}

- (void)foursquareDidNotAuthorize:(BZFoursquare *)foursquare error:(NSDictionary *)errorInfo {
    NSLog(@"not authorized! %s: %@", __PRETTY_FUNCTION__, errorInfo);
}

- (IBAction)click:(id)sender {

    if (![foursquare_ isSessionValid]){ 
        NSLog(@"here");
        [foursquare_ startAuthorization];
    } else {
        [foursquare_ invalidateSession];
    }
}

- (IBAction)checkin:(id)sender {
    NSDictionary *parameters = [NSDictionary dictionaryWithObjectsAndKeys:@"4d341a00306160fcf0fc6a88", @"venueId", @"public", @"broadcast", kClientID, @"oauth_token", nil];
    self.request = [foursquare_ requestWithPath:@"checkins/add" HTTPMethod:@"POST" parameters:parameters delegate:self];
    [request_ start];
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
}

@end

Вы можете мне помочь, ребята?любая помощь будет высоко оценена.

Ответы [ 2 ]

1 голос
/ 06 февраля 2012

https://developer.foursquare.com/overview/responses

401 (не авторизован). Токен OAuth был предоставлен, но был недействительным.

Возможно, вы как-то повредили свой токен oauth?

0 голосов
/ 15 сентября 2014

Я использую код ниже, и он работает для меня:

NSDictionary *parameters = @{@"venueId": @"4a0c6465f964a5202a751fe3", @"broadcast": @"public",@"oauth_token":kClientID};
...