I'm trying to set up google play services sign in. I have an android client and a php backend. The PHP backend requires the client server.
When I download the client secret json from the google developer console, I get a json that looks like this :
{"installed":{"client_id":"XXXXXX.apps.googleusercontent.com","project_id":"api-project-XXXXXX","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://accounts.google.com/o/oauth2/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","redirect_uris":["urn:ietf:wg:oauth:2.0:oob","http://localhost"]}}
Where is the "secret" here? the link between the client_id and the project_id? Is this what a normal client secret json is supposed to look like? Currently the code is following the android PHP samples and not working, and I'm suspecting that the secret isnt set up correctly.
Am I looking in the right place? Thanks!
