Я пытаюсь интегрировать Google Latitute в iPhone,1. Я создал прогнозируемый с помощью сервиса Google Локатор и создал секрет клиента.2. Я использую oAuthConsumer для получения ключа доступа следующим образом:
OAConsumer *consumer = [[OAConsumer alloc] initWithKey:@"App key goes here"
secret:@"client secret goes here"];
OAMutableURLRequest *request = [[[OAMutableURLRequest alloc] initWithURL:url consumer: consumer token:token realm:nil signatureProvider: nil] autorelease];
if (!request) return;
[request setOAuthParameterName:@"scope" withValue:@"https://www.googleapis.com/auth/latitude"];
[request setOAuthParameterName:@"oauth_callback" withValue:@"http://someURL"];
[request setHTTPMethod: @"POST"];
OADataFetcher *fetcher = [[[OADataFetcher alloc] init] autorelease];
[fetcher fetchDataWithRequest: request delegate: self didFinishSelector: success didFailSelector: fail];
Проблема в делегате успеха вместо маркера oauth. Я получаю Respose как
Consumer is not registered: App-key
там ошибка в вышеупомянутом запросе, если нет, как зарегистрировать приложение Google APIЗаранее спасибо