I want to incorporate Google sign-in in my app (not with the Firebase UI as seen here), but manually so to speak, as seen here
In the image I provided below there's a part that says:
You must pass your server's client ID to the requestIdToken method. To find the OAuth 2.0 client ID:
a. Open the Credentials page in the API Console.
b. The Web application type client ID is your backend server's OAuth 2.0 client ID.
I did some research and found this which was very informative but the clarification I am seeking wasn't quite there.
What I wanted to know is:
If I am only using Firebase as my backend and no physical server of my own do I need to do the step that says
You must pass your server's client ID to the requestIdToken method...
Or am I fine with just leaving this line of code:
.requestIdToken(getString(R.string.default_web_client_id))
since I am only using Firebase and no physical servers of my own?
I just need some clarification before I continue with implementing Google sign-in this way and not with the FirebaseUI.
