@@ -192,7 +192,7 @@ Class | Method | HTTP request | Description
192192## Documentation For Authorization
193193
194194
195-
195+ Authentication schemes defined for the API:
196196### petstore_auth
197197
198198
@@ -222,7 +222,6 @@ auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
222222r , err := client.Service .Operation (auth, args)
223223```
224224
225-
226225### api_key
227226
228227- ** Type** : API key
@@ -231,7 +230,6 @@ r, err := client.Service.Operation(auth, args)
231230
232231Note, each API key must be added to a map of ` map[string]APIKey ` where the key is: api_key and passed in as the auth context for each request.
233232
234-
235233### api_key_query
236234
237235- ** Type** : API key
@@ -240,7 +238,6 @@ Note, each API key must be added to a map of `map[string]APIKey` where the key i
240238
241239Note, each API key must be added to a map of ` map[string]APIKey ` where the key is: api_key_query and passed in as the auth context for each request.
242240
243-
244241### http_basic_test
245242
246243- ** Type** : HTTP basic authentication
@@ -255,7 +252,6 @@ auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAut
255252r , err := client.Service .Operation (auth, args)
256253```
257254
258-
259255### bearer_test
260256
261257- ** Type** : HTTP Bearer token authentication
@@ -267,7 +263,6 @@ auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_T
267263r , err := client.Service .Operation (auth, args)
268264```
269265
270-
271266### http_signature_test
272267
273268- ** Type** : HTTP signature authentication
0 commit comments