I am new in iOS.
I am trying to show nearby places with selected types types – Bar, Cafe, ATM etc
I have created project on developer console. enable API (google places api, google map sdk, direction api)
I have created iOS api keys but Api key not working I got error message “This IP, site or mobile application is not authorized to use this API key. Request received from IP address 114.143.244.10, with empty referer”
when I tried browser api key I got error “This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console: Learn more: https://code.google.com/apis/console“
I am using this url
NSString *url = [NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/search/json?location=%f,%f&radius=%@&types=%@&sensor=true&key=%@", currentCentre.latitude, currentCentre.longitude, [NSString stringWithFormat:@"%i", currenDist], googleType, kGOOGLE_API_KEY];
I didn’t get what is the problem.
places not found using google places api in iOS