so in my iOS app, I had to face this issue:
{
"error": {
"code": 400,
"message": "API key expired. Please renew the API key.",
"errors": [{
"message": "API key expired. Please renew the API key.",
"domain": "global",
"reason": "badRequest"
}],
"status": "INVALID_ARGUMENT"
}
}
it is said my API key is expired, fortunately I can solve the problem by following the solution in here: Firebase authentication - expired api key
I have to replace the API key in my iOS app using the most recent API key from Google API console
it little bit weird that creation date for my iOS and Android app is the same at 26 February 2019. do I make something wrong that triggers the API key to be recreated at 26 February 2019 ? what makes the API key recreated in Firebase?
I am new in using Firebase, I just imagine, if my apps already used by so many people, and suddenly I have to change manually the API key then it means a lot of users can't use the app and I have to republish the app on Google Play and Play Store.
now I am still in development, the first time I create the iOS project was on March 2018 and the API key creation date was 26 February 2019, I am pretty sure that 26 February 2019 is the date when I create the Android app on my firebase in the same project of my iOS app. is that makes the API key recreated ?
I am worried, need some information here. Thanks