I am developing an app in ios 7 using Google app engine as backend.I followed this link https://developers.google.com/appengine/docs/java/endpoints/consume_ios Our google console project is configured for IOS. But the problem is when i am try to access any API I get this message:
Error Domain=com.google.GTLJSONRPCErrorDomain Code=404 "The operation couldn’t be completed. (Not Found)" UserInfo=0x17d3dd20 {error=Not Found, GTLStructuredError=GTLErrorObject 0x17e54e40: {message:"Not Found" code:404 data:[1]}, NSLocalizedFailureReason=(Not Found)}
The client side code:
static GTLServicePersonendpoint *service = nil;
if (!service) {
service = [[GTLServicePersonendpoint alloc] init];
service.retryEnabled = YES;
[GTMHTTPFetcher setLoggingEnabled:YES];
}
[service executeQuery:querry completionHandler:^(GTLServiceTicket *ticket,GTLPersonendpointPersonInfoWrapper* object,NSError *error){
NSLog(@"Signpu error: %@",[error description]);
NSLog(@"Signup object %@",[object description]);
}];
Can any one suggest me any solution and the reason behind this problem?