skip to Main Content

Fatal error: Uncaught Google_Exception: Invalid client secret JSON file. in /somepath/lib/vendor/google/apiclient/src/Google/Client.php

I have create an OAuth 2.0 Client IDs that looks like this when i download the json: { "web": { "client_id": "topsecretstuff.apps.googleusercontent.com", "project_id": "health-42", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "token_uri": "https://oauth2.googleapis.com/token", "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", "client_secret": "GOCSPX-topsecretstuff", "redirect_uris": [ "https://topsecret.domain.tld/oauth2callback.php", "https://topsecret.domain.tld/googlelogin.php" ] } } I…

VIEW QUESTION
Back To Top
Search