iOS ,Google Map Error: Your key may be invalid for your bundle ID -


clientparametersrequest failed, 3 attempts remaining (0 vs 6).  error domain=com.google.httpstatus code=400 "the operation couldn’t completed.  (com.google.httpstatus error 400.)" userinfo=0x7f95f4811190  {data=<cfdata 0x7f95f24df240 [0x1030a2eb0]> {length = 145, capacity = 256,bytes =      0x3c48544d4c3e0a3c484541443e0a3c54... 3c2f48544d4c3e0a}} 

i need error.

you need provide api key application. can follow steps in this documentation create api_key google developer console. (note: sample api_key in documentation page throw error, dont use it, create own one)

after api key developer console, can paste in appdelegate file.

if developing objective-c app, this:

[gmsservices provideapikey:@"your_api_key"]; 

if developing swift app, this:

gmsservices.provideapikey("your_api_key"); 

(replace your_api_key actual key).


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -