Skip to content

Commit 6ad0db1

Browse files
liminwlesv
authored andcommitted
Fix an issue in openapi.yaml. (#759)
In our sample, both api_key and the auth issuer are required, the config should use "AND" semantics.
1 parent a77fee7 commit 6ad0db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

endpoints/getting-started/openapi.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ paths:
6565
$ref: "#/definitions/authInfoResponse"
6666
security:
6767
- api_key: []
68-
- google_jwt: []
68+
google_jwt: []
6969
"/auth/info/googleidtoken":
7070
get:
7171
description: "Returns the requests' authentication information."
@@ -79,7 +79,7 @@ paths:
7979
$ref: "#/definitions/authInfoResponse"
8080
security:
8181
- api_key: []
82-
- google_id_token: []
82+
google_id_token: []
8383
definitions:
8484
echoMessage:
8585
properties:

0 commit comments

Comments
 (0)