Unable to use Google geocoding api in react native app - react-native

I'm trying to implement google's geocoding for reverse geocoding in my react native app, i wanted to apply restrictions in google console for iOS app with bundle id's. But when i apply restrictions i'm always getting ACCESS_DENIED response with google geocoding api url.
I have enabled the geocoding api and Maps Javascript API, and also the billing set up is done, but still i'm getting same response.
How do i implement reverse geocoding in my app with restrictions enabled for iOS.
Any Answers/Suggestions appreciated.
Thanks.

Related

Google API key is not working in release/ debug API, working on local machine in react native

configured all the things for place API to use google autocomplete
after that linked billing account in google cloud
Google API key is not working in release/ debug API, working on local machine in react native
Need to show list of items

Can I use Google's recapcha v3 in react native

I know google recapcha v3 uses browser's fingerprinting, cookies and the logged in google account's reputation in the browser to evaluate and give the score.
If I use recapcha v3 in react native implemented using WebView. It works but considering there is no loggedin google account nor cookies, is the score given by recapcha in this simulated environment reliable?
Can any one please help me here,
Can I use google recaptcha v3 in react native?

How to do Google Recaptcha for react native mobile app

We have a API for our backend. For the signin end point we have a Google recaptcha v3 field g-captcha-response from client which is required for the API Call. It works perfectly fine for the web app. We are now trying to use the same API endpoint for react native mobile app. In this case how will signin work without the recaptcha ?
I have never seen any mobile apps using recaptcha.
How do I go about this ?
check this package it's a react native wrapper for recaptcha v3
Was able to implement that via react-native-recaptcha-that-works

The Google Maps API server rejected your request. This IP, Site or mobile application is not authroised to use this API key

I have implemented the Google maps iframe embed api to my website, the map API is working correctly on desktop web browsers as well as Google Chrome for mobile.
However when i attempt to view the page of my site with the API on in mobile safari on iphone i get an error saying;
"The Google Maps API server rejected your request. This IP, Site or mobile application is not authroised to use this API key".
I Have enabled Google Map API for IOS on the google developer console and the issue still hasnt gone away. As i said the API works fine on other mobile browsers.
Does any one have any suggestions how to fix this?
Thanks, Martin
Did you create a new Client ID?
Handheld devices require "Installed Application" Client ID, not "Web Application. "

Google Play Services Leaderboards for cross platform games

I am working at iOS & android games, and I want to implement a leaderboard system.
What I need to do is add and get scores, exactly what google play services leaderboard does.
The question that I have, is it possible to use the REST api for this purpose and using in the game only with HTTP Requests?
Ex: I want to add a score, I do a POST HTTP Request to some google api url, etc.
In the documentation i found this
https://developers.google.com/games/services/web/clientsetup
TL;DR
Can I use the google play services Rest API only with HTTP Requests, from a cross platform mobile game?
Thanks.