From 0924ff0ef4a901b03d9fe1e1638be5df8fd0e49e Mon Sep 17 00:00:00 2001 From: Lawrence L Date: Thu, 16 Feb 2017 15:09:21 -0800 Subject: [PATCH] Add region tags for firebase auth to openapi.yaml (#809) In order to allow for includes --- endpoints/getting-started/openapi.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/endpoints/getting-started/openapi.yaml b/endpoints/getting-started/openapi.yaml index 818603e74c71..3c1d80f0c697 100644 --- a/endpoints/getting-started/openapi.yaml +++ b/endpoints/getting-started/openapi.yaml @@ -145,6 +145,7 @@ securityDefinitions: # Your OAuth2 client's Client ID must be added here. You can add multiple client IDs to accept tokens form multiple clients. x-google-audiences: "YOUR-CLIENT-ID" # This section configures authentication using Firebase Auth. + # [START firebaseAuth] firebase: authorizationUrl: "" flow: "implicit" @@ -152,3 +153,4 @@ securityDefinitions: x-google-issuer: "https://securetoken.google.com/YOUR-PROJECT-ID" x-google-jwks_uri: "https://www.googleapis.com/service_accounts/v1/metadata/x509/securetoken@system.gserviceaccount.com" x-google-audiences: "YOUR-PROJECT-ID" + # [END firebaseAuth]