mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 00:13:50 +00:00
fix use of isBasic and isBasicBasic and isBasicBearer and isHttpSignature in documentation (#15443)
* [ada] fix use of isBasic condition * [apex] fix use of isBasic condition * [asciidoc] fix use of isBasic condition * [python] fix use of isBasic condition * [csharp C#] fix use of isBasic condition * [htmlDocs] fix use of isBasic condition * [Ruby] fix use of isBasic condition * [scala] fix use of isBasic condition * [julia] fix use of isBasic condition * [Objective-C objc] fix use of isBasic condition * [GraphQL] fix use of isBasic condition * [MarkDown] fix use of isBasic condition
This commit is contained in:
parent
f769070fa3
commit
c2f635a330
@ -94,10 +94,18 @@ Method | HTTP request | Description
|
|||||||
- **API key parameter name**: {{{keyParamName}}}
|
- **API key parameter name**: {{{keyParamName}}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
|
|
||||||
- **Type**: HTTP basic authentication
|
- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}
|
||||||
|
|
||||||
|
- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
|
|
||||||
- **Type**: OAuth
|
- **Type**: OAuth
|
||||||
|
@ -104,14 +104,14 @@ Please follow the [installation](#installation) instruction and execute the foll
|
|||||||
{{classname}} api = new {{classname}}();
|
{{classname}} api = new {{classname}}();
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{classPrefix}}Client client = api.getClient();
|
{{classPrefix}}Client client = api.getClient();
|
||||||
{{#authMethods}}{{#isBasic}}
|
{{#authMethods}}{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization: {{{name}}}
|
// Configure HTTP basic authorization: {{{name}}}
|
||||||
HttpBasicAuth {{{name}}} = (HttpBasicAuth) client.getAuthentication('{{{name}}}');
|
HttpBasicAuth {{{name}}} = (HttpBasicAuth) client.getAuthentication('{{{name}}}');
|
||||||
{{{name}}}.setUsername('YOUR USERNAME');
|
{{{name}}}.setUsername('YOUR USERNAME');
|
||||||
{{{name}}}.setPassword('YOUR PASSWORD');
|
{{{name}}}.setPassword('YOUR PASSWORD');
|
||||||
|
|
||||||
// You can also set your username and password in one line
|
// You can also set your username and password in one line
|
||||||
{{{name}}}.setCredentials('YOUR USERNAME', 'YOUR PASSWORD');{{/isBasic}}{{#isApiKey}}
|
{{{name}}}.setCredentials('YOUR USERNAME', 'YOUR PASSWORD');{{/isBasicBasic}}{{#isApiKey}}
|
||||||
// Configure API key authorization: {{{name}}}
|
// Configure API key authorization: {{{name}}}
|
||||||
ApiKeyAuth {{{name}}} = (ApiKeyAuth) client.getAuthentication('{{{name}}}');
|
ApiKeyAuth {{{name}}} = (ApiKeyAuth) client.getAuthentication('{{{name}}}');
|
||||||
{{{name}}}.setApiKey('YOUR API KEY');{{/isApiKey}}{{#isOAuth}}
|
{{{name}}}.setApiKey('YOUR API KEY');{{/isApiKey}}{{#isOAuth}}
|
||||||
@ -161,14 +161,16 @@ Class | Method | HTTP request | Description
|
|||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
### {{name}}
|
### {{name}}
|
||||||
|
|
||||||
{{#isApiKey}}
|
{{#isApiKey}}- **Type**: API key
|
||||||
|
|
||||||
- **Type**: API key
|
|
||||||
- **API key parameter name**: {{keyParamName}}
|
- **API key parameter name**: {{keyParamName}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -93,14 +93,16 @@ Class | Method | HTTP request | Description
|
|||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
### {{name}}
|
### {{name}}
|
||||||
|
|
||||||
{{#isApiKey}}
|
{{#isApiKey}}- **Type**: API key
|
||||||
|
|
||||||
- **Type**: API key
|
|
||||||
- **API key parameter name**: {{keyParamName}}
|
- **API key parameter name**: {{keyParamName}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -26,14 +26,14 @@ Method | HTTP request | Description
|
|||||||
{{classname}} api = new {{classname}}();
|
{{classname}} api = new {{classname}}();
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{classPrefix}}Client client = api.getClient();
|
{{classPrefix}}Client client = api.getClient();
|
||||||
{{#authMethods}}{{#isBasic}}
|
{{#authMethods}}{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization: {{{name}}}
|
// Configure HTTP basic authorization: {{{name}}}
|
||||||
HttpBasicAuth {{{name}}} = (HttpBasicAuth) client.getAuthentication('{{{name}}}');
|
HttpBasicAuth {{{name}}} = (HttpBasicAuth) client.getAuthentication('{{{name}}}');
|
||||||
{{{name}}}.setUsername('YOUR USERNAME');
|
{{{name}}}.setUsername('YOUR USERNAME');
|
||||||
{{{name}}}.setPassword('YOUR PASSWORD');
|
{{{name}}}.setPassword('YOUR PASSWORD');
|
||||||
|
|
||||||
// You can also set your username and password in one line
|
// You can also set your username and password in one line
|
||||||
{{{name}}}.setCredentials('YOUR USERNAME', 'YOUR PASSWORD');{{/isBasic}}{{#isApiKey}}
|
{{{name}}}.setCredentials('YOUR USERNAME', 'YOUR PASSWORD');{{/isBasicBasic}}{{#isApiKey}}
|
||||||
// Configure API key authorization: {{{name}}}
|
// Configure API key authorization: {{{name}}}
|
||||||
ApiKeyAuth {{{name}}} = (ApiKeyAuth) client.getAuthentication('{{{name}}}');
|
ApiKeyAuth {{{name}}} = (ApiKeyAuth) client.getAuthentication('{{{name}}}');
|
||||||
{{{name}}}.setApiKey('YOUR API KEY');{{/isApiKey}}{{#isOAuth}}
|
{{{name}}}.setApiKey('YOUR API KEY');{{/isApiKey}}{{#isOAuth}}
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
{{#isBasic}}
|
{{#isBasic}}
|
||||||
{{#isBasicBasic}}* *HTTP Basic* Authentication _{{{name}}}_{{/isBasicBasic}}
|
{{#isBasicBasic}}* *HTTP Basic* Authentication _{{{name}}}_{{/isBasicBasic}}
|
||||||
{{#isBasicBearer}}* *Bearer* Authentication {{/isBasicBearer}}
|
{{#isBasicBearer}}* *Bearer* Authentication {{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}* *HTTP signature* Authentication{{/isHttpSignature}}
|
||||||
{{/isBasic}}
|
{{/isBasic}}
|
||||||
{{#isOAuth}}* *OAuth* AuthorizationUrl: _{{authorizationUrl}}_, TokenUrl: _{{tokenUrl}}_ {{/isOAuth}}
|
{{#isOAuth}}* *OAuth* AuthorizationUrl: _{{authorizationUrl}}_, TokenUrl: _{{tokenUrl}}_ {{/isOAuth}}
|
||||||
{{#isApiKey}}* *APIKey* KeyParamName: _{{keyParamName}}_, KeyInQuery: _{{isKeyInQuery}}_, KeyInHeader: _{{isKeyInHeader}}_{{/isApiKey}}
|
{{#isApiKey}}* *APIKey* KeyParamName: _{{keyParamName}}_, KeyInQuery: _{{isKeyInQuery}}_, KeyInHeader: _{{isKeyInHeader}}_{{/isApiKey}}
|
||||||
|
@ -152,6 +152,9 @@ No model defined in this package
|
|||||||
{{#isBasicBearer}}
|
{{#isBasicBearer}}
|
||||||
- **Type**: HTTP bearer authentication
|
- **Type**: HTTP bearer authentication
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{/isBasic}}
|
{{/isBasic}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
- **Type**: OAuth
|
- **Type**: OAuth
|
||||||
|
@ -253,6 +253,8 @@ No model defined in this package
|
|||||||
{{/isBasicBasic}}
|
{{/isBasicBasic}}
|
||||||
{{#isBasicBearer}}- **Type**: Bearer Authentication
|
{{#isBasicBearer}}- **Type**: Bearer Authentication
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -162,6 +162,9 @@ Class | Method | HTTP request | Description
|
|||||||
{{#isBasicBearer}}
|
{{#isBasicBearer}}
|
||||||
- **Type**: Bearer Authentication
|
- **Type**: Bearer Authentication
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
- **Type**: OAuth
|
- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
|
@ -161,6 +161,8 @@ No model defined in this package
|
|||||||
{{/isBasicBasic}}
|
{{/isBasicBasic}}
|
||||||
{{#isBasicBearer}}- **Type**: Bearer Authentication
|
{{#isBasicBearer}}- **Type**: Bearer Authentication
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -212,6 +212,9 @@ No model defined in this package
|
|||||||
{{#isBasicBearer}}
|
{{#isBasicBearer}}
|
||||||
- **Type**: HTTP bearer authentication
|
- **Type**: HTTP bearer authentication
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{/isBasic}}
|
{{/isBasic}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
- **Type**: OAuth
|
- **Type**: OAuth
|
||||||
|
@ -53,7 +53,7 @@ Example
|
|||||||
r, err := client.Service.Operation(auth, args)
|
r, err := client.Service.Operation(auth, args)
|
||||||
```
|
```
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
|
|
||||||
Example
|
Example
|
||||||
```
|
```
|
||||||
@ -63,7 +63,11 @@ Example
|
|||||||
})
|
})
|
||||||
r, err := client.Service.Operation(auth, args)
|
r, err := client.Service.Operation(auth, args)
|
||||||
```
|
```
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{{flow}}}
|
- **Flow**: {{{flow}}}
|
||||||
- **Authorization URL**: {{{authorizationUrl}}}
|
- **Authorization URL**: {{{authorizationUrl}}}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
<ol>
|
<ol>
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
<li>{{#isBasic}}HTTP Basic Authentication{{/isBasic}}{{#isOAuth}}OAuth AuthorizationUrl:{{authorizationUrl}}TokenUrl:{{tokenUrl}}{{/isOAuth}}{{#isApiKey}}APIKey KeyParamName:{{keyParamName}} KeyInQuery:{{isKeyInQuery}} KeyInHeader:{{isKeyInHeader}}{{/isApiKey}}</li>
|
<li>{{#isBasicBasic}}HTTP Basic Authentication{{/isBasicBasic}}{{#isBasicBearer}}HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}{{/isBasicBearer}}{{#isHttpSignature}}HTTP signature authentication{{/isHttpSignature}}{{#isOAuth}}OAuth AuthorizationUrl:{{authorizationUrl}}TokenUrl:{{tokenUrl}}{{/isOAuth}}{{#isApiKey}}APIKey KeyParamName:{{keyParamName}} KeyInQuery:{{isKeyInQuery}} KeyInHeader:{{isKeyInHeader}}{{/isApiKey}}</li>
|
||||||
{{/authMethods}}
|
{{/authMethods}}
|
||||||
</ol>
|
</ol>
|
||||||
{{/hasAuthMethods}}
|
{{/hasAuthMethods}}
|
||||||
|
@ -12,9 +12,9 @@ namespace Example
|
|||||||
{
|
{
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}// Configure HTTP basic authorization: {{{name}}}
|
{{#isBasicBasic}}// Configure HTTP basic authorization: {{{name}}}
|
||||||
Configuration.Default.Username = "YOUR_USERNAME";
|
Configuration.Default.Username = "YOUR_USERNAME";
|
||||||
Configuration.Default.Password = "YOUR_PASSWORD";{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
Configuration.Default.Password = "YOUR_PASSWORD";{{/isBasicBasic}}{{#isBasicBearer}}// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";{{/isBasicBearer}}{{#isApiKey}}// Configure API key authorization: {{{name}}}
|
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";{{/isBasicBearer}}{{#isApiKey}}// Configure API key authorization: {{{name}}}
|
||||||
Configuration.Default.ApiKey.Add("{{{keyParamName}}}", "YOUR_API_KEY");
|
Configuration.Default.ApiKey.Add("{{{keyParamName}}}", "YOUR_API_KEY");
|
||||||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
curl -X {{vendorExtensions.x-codegen-http-method-upper-case}}{{#authMethods}} \
|
curl -X {{vendorExtensions.x-codegen-http-method-upper-case}}{{#authMethods}} \
|
||||||
{{#isApiKey}}{{#isKeyInHeader}}-H "{{keyParamName}}: [[apiKey]]"{{/isKeyInHeader}}{{/isApiKey}}{{^isBasicBearer}}{{#isBasic}} -H "Authorization: Basic [[basicHash]]"{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}} -H "Authorization: Bearer [[accessToken]]"{{/isBasicBearer}}{{/authMethods}}{{#hasProduces}} \
|
{{#isApiKey}}{{#isKeyInHeader}}-H "{{keyParamName}}: [[apiKey]]"{{/isKeyInHeader}}{{/isApiKey}}{{#isBasicBasic}} -H "Authorization: Basic [[basicHash]]"{{/isBasicBasic}}{{#isBasicBearer}} -H "Authorization: Bearer [[accessToken]]"{{/isBasicBearer}}{{/authMethods}}{{#hasProduces}} \
|
||||||
-H "Accept: {{#produces}}{{{mediaType}}}{{^-last}},{{/-last}}{{/produces}}"{{/hasProduces}}{{#hasConsumes}} \
|
-H "Accept: {{#produces}}{{{mediaType}}}{{^-last}},{{/-last}}{{/produces}}"{{/hasProduces}}{{#hasConsumes}} \
|
||||||
-H "Content-Type: {{#consumes}}{{{mediaType}}}{{^-last}},{{/-last}}{{/consumes}}"{{/hasConsumes}} \
|
-H "Content-Type: {{#consumes}}{{{mediaType}}}{{^-last}},{{/-last}}{{/consumes}}"{{/hasConsumes}} \
|
||||||
"{{basePath}}{{path}}{{#hasQueryParams}}?{{#queryParams}}{{^-first}}&{{/-first}}{{baseName}}={{{example}}}{{/queryParams}}{{/hasQueryParams}}"{{#requestBodyExamples}} \
|
"{{basePath}}{{path}}{{#hasQueryParams}}?{{#queryParams}}{{^-first}}&{{/-first}}{{baseName}}={{{example}}}{{/queryParams}}{{/hasQueryParams}}"{{#requestBodyExamples}} \
|
||||||
|
@ -11,11 +11,11 @@ public class {{{classname}}}Example {
|
|||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
ApiClient defaultClient = Configuration.getDefaultApiClient();
|
ApiClient defaultClient = Configuration.getDefaultApiClient();
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization: {{{name}}}
|
// Configure HTTP basic authorization: {{{name}}}
|
||||||
HttpBasicAuth {{{name}}} = (HttpBasicAuth) defaultClient.getAuthentication("{{{name}}}");
|
HttpBasicAuth {{{name}}} = (HttpBasicAuth) defaultClient.getAuthentication("{{{name}}}");
|
||||||
{{{name}}}.setUsername("YOUR USERNAME");
|
{{{name}}}.setUsername("YOUR USERNAME");
|
||||||
{{{name}}}.setPassword("YOUR PASSWORD");{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
{{{name}}}.setPassword("YOUR PASSWORD");{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
HttpBearerAuth {{{name}}} = (HttpBearerAuth) defaultClient.getAuthentication("{{{name}}}");
|
HttpBearerAuth {{{name}}} = (HttpBearerAuth) defaultClient.getAuthentication("{{{name}}}");
|
||||||
{{{name}}}.setBearerToken("BEARER TOKEN");{{/isBasicBearer}}{{#isApiKey}}
|
{{{name}}}.setBearerToken("BEARER TOKEN");{{/isBasicBearer}}{{#isApiKey}}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
var {{{jsModuleName}}} = require('{{{jsProjectName}}}');
|
var {{{jsModuleName}}} = require('{{{jsProjectName}}}');
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
var defaultClient = {{{jsModuleName}}}.ApiClient.instance;
|
var defaultClient = {{{jsModuleName}}}.ApiClient.instance;
|
||||||
{{#authMethods}}{{^isBasicBearer}}{{#isBasic}}
|
{{#authMethods}}{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization: {{{name}}}
|
// Configure HTTP basic authorization: {{{name}}}
|
||||||
var {{{name}}} = defaultClient.authentications['{{{name}}}'];
|
var {{{name}}} = defaultClient.authentications['{{{name}}}'];
|
||||||
{{{name}}}.username = 'YOUR USERNAME';
|
{{{name}}}.username = 'YOUR USERNAME';
|
||||||
{{{name}}}.password = 'YOUR PASSWORD';{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
{{{name}}}.password = 'YOUR PASSWORD';{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
var {{{name}}} = defaultClient.authentications['{{{name}}}'];
|
var {{{name}}} = defaultClient.authentications['{{{name}}}'];
|
||||||
{{{name}}}.accessToken = "YOUR ACCESS TOKEN";{{/isBasicBearer}}{{#isApiKey}}
|
{{{name}}}.accessToken = "YOUR ACCESS TOKEN";{{/isBasicBearer}}{{#isApiKey}}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{classPrefix}}Configuration *apiConfig = [{{classPrefix}}Configuration sharedConfig];
|
{{classPrefix}}Configuration *apiConfig = [{{classPrefix}}Configuration sharedConfig];
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
||||||
[apiConfig setUsername:@"YOUR_USERNAME"];
|
[apiConfig setUsername:@"YOUR_USERNAME"];
|
||||||
[apiConfig setPassword:@"YOUR_PASSWORD"];{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
[apiConfig setPassword:@"YOUR_PASSWORD"];{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];{{/isBasicBearer}}{{#isApiKey}}
|
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];{{/isBasicBearer}}{{#isApiKey}}
|
||||||
// Configure API key authorization: (authentication scheme: {{{name}}})
|
// Configure API key authorization: (authentication scheme: {{{name}}})
|
||||||
|
@ -3,10 +3,10 @@ use {{{perlModuleName}}}::Configuration;
|
|||||||
use {{perlModuleName}}::{{classname}};
|
use {{perlModuleName}}::{{classname}};
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
# Configure HTTP basic authorization: {{{name}}}
|
# Configure HTTP basic authorization: {{{name}}}
|
||||||
${{{perlModuleName}}}::Configuration::username = 'YOUR_USERNAME';
|
${{{perlModuleName}}}::Configuration::username = 'YOUR_USERNAME';
|
||||||
${{{perlModuleName}}}::Configuration::password = 'YOUR_PASSWORD';{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
${{{perlModuleName}}}::Configuration::password = 'YOUR_PASSWORD';{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
# Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
# Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
${{{perlModuleName}}}::Configuration::access_token = 'YOUR_ACCESS_TOKEN';{{/isBasicBearer}}{{#isApiKey}}
|
${{{perlModuleName}}}::Configuration::access_token = 'YOUR_ACCESS_TOKEN';{{/isBasicBearer}}{{#isApiKey}}
|
||||||
# Configure API key authorization: {{{name}}}
|
# Configure API key authorization: {{{name}}}
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
require_once(__DIR__ . '/vendor/autoload.php');
|
require_once(__DIR__ . '/vendor/autoload.php');
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
// Configure HTTP basic authorization: {{{name}}}
|
// Configure HTTP basic authorization: {{{name}}}
|
||||||
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
|
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
|
||||||
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
// Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setAccessToken('{{{keyParamName}}}', 'YOUR_ACCESS_TOKEN');{{/isBasicBearer}}{{#isApiKey}}
|
{{phpInvokerPackage}}\Configuration::getDefaultConfiguration()->setAccessToken('{{{keyParamName}}}', 'YOUR_ACCESS_TOKEN');{{/isBasicBearer}}{{#isApiKey}}
|
||||||
// Configure API key authorization: {{{name}}}
|
// Configure API key authorization: {{{name}}}
|
||||||
|
@ -5,10 +5,10 @@ from {{{pythonPackageName}}}.rest import ApiException
|
|||||||
from pprint import pprint
|
from pprint import pprint
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{#authMethods}}
|
{{#authMethods}}
|
||||||
{{^isBasicBearer}}{{#isBasic}}
|
{{#isBasicBasic}}
|
||||||
# Configure HTTP basic authorization: {{{name}}}
|
# Configure HTTP basic authorization: {{{name}}}
|
||||||
{{{pythonPackageName}}}.configuration.username = 'YOUR_USERNAME'
|
{{{pythonPackageName}}}.configuration.username = 'YOUR_USERNAME'
|
||||||
{{{pythonPackageName}}}.configuration.password = 'YOUR_PASSWORD'{{/isBasic}}{{/isBasicBearer}}{{#isBasicBearer}}
|
{{{pythonPackageName}}}.configuration.password = 'YOUR_PASSWORD'{{/isBasicBasic}}{{#isBasicBearer}}
|
||||||
# Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
# Configure Bearer{{#bearerFormat}} ({{{.}}}){{/bearerFormat}} access token for authorization: {{{name}}}
|
||||||
{{{pythonPackageName}}}.configuration.access_token = 'YOUR_ACCESS_TOKEN'{{/isBasicBearer}}{{#isApiKey}}
|
{{{pythonPackageName}}}.configuration.access_token = 'YOUR_ACCESS_TOKEN'{{/isBasicBearer}}{{#isApiKey}}
|
||||||
# Configure API key authorization: {{{name}}}
|
# Configure API key authorization: {{{name}}}
|
||||||
|
@ -55,7 +55,7 @@ Example
|
|||||||
result = callApi(api, args...; api_key)
|
result = callApi(api, args...; api_key)
|
||||||
```
|
```
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
|
|
||||||
Example
|
Example
|
||||||
```
|
```
|
||||||
@ -67,7 +67,11 @@ Example
|
|||||||
api = MyApi(client)
|
api = MyApi(client)
|
||||||
result = callApi(api, args...; api_key)
|
result = callApi(api, args...; api_key)
|
||||||
```
|
```
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{{flow}}}
|
- **Flow**: {{{flow}}}
|
||||||
- **Authorization URL**: {{{authorizationUrl}}}
|
- **Authorization URL**: {{{authorizationUrl}}}
|
||||||
|
@ -44,8 +44,12 @@ All endpoints do not require authorization.
|
|||||||
- **API key parameter name**: {{keyParamName}}
|
- **API key parameter name**: {{keyParamName}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -67,10 +67,10 @@ Please follow the [installation procedure](#installation--usage) and then run th
|
|||||||
{{#apiInfo}}{{#apis}}{{#-first}}{{#operations}}{{#operation}}{{#-first}}
|
{{#apiInfo}}{{#apis}}{{#-first}}{{#operations}}{{#operation}}{{#-first}}
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{classPrefix}}DefaultConfiguration *apiConfig = [{{classPrefix}}DefaultConfiguration sharedConfig];
|
{{classPrefix}}DefaultConfiguration *apiConfig = [{{classPrefix}}DefaultConfiguration sharedConfig];
|
||||||
{{#authMethods}}{{#isBasic}}// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
{{#authMethods}}{{#isBasicBasic}}// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
||||||
[apiConfig setUsername:@"YOUR_USERNAME"];
|
[apiConfig setUsername:@"YOUR_USERNAME"];
|
||||||
[apiConfig setPassword:@"YOUR_PASSWORD"];
|
[apiConfig setPassword:@"YOUR_PASSWORD"];
|
||||||
{{/isBasic}}{{#isApiKey}}
|
{{/isBasicBasic}}{{#isApiKey}}
|
||||||
// Configure API key authorization: (authentication scheme: {{{name}}})
|
// Configure API key authorization: (authentication scheme: {{{name}}})
|
||||||
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"{{{keyParamName}}}"];
|
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"{{{keyParamName}}}"];
|
||||||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
||||||
@ -127,8 +127,12 @@ Class | Method | HTTP request | Description
|
|||||||
- **API key parameter name**: {{{keyParamName}}}
|
- **API key parameter name**: {{{keyParamName}}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{{flow}}}
|
- **Flow**: {{{flow}}}
|
||||||
- **Authorization URL**: {{{authorizationUrl}}}
|
- **Authorization URL**: {{{authorizationUrl}}}
|
||||||
|
@ -25,10 +25,10 @@ Method | HTTP request | Description
|
|||||||
```objc
|
```objc
|
||||||
{{#hasAuthMethods}}
|
{{#hasAuthMethods}}
|
||||||
{{classPrefix}}DefaultConfiguration *apiConfig = [{{classPrefix}}DefaultConfiguration sharedConfig];
|
{{classPrefix}}DefaultConfiguration *apiConfig = [{{classPrefix}}DefaultConfiguration sharedConfig];
|
||||||
{{#authMethods}}{{#isBasic}}// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
{{#authMethods}}{{#isBasicBasic}}// Configure HTTP basic authorization (authentication scheme: {{{name}}})
|
||||||
[apiConfig setUsername:@"YOUR_USERNAME"];
|
[apiConfig setUsername:@"YOUR_USERNAME"];
|
||||||
[apiConfig setPassword:@"YOUR_PASSWORD"];
|
[apiConfig setPassword:@"YOUR_PASSWORD"];
|
||||||
{{/isBasic}}{{#isApiKey}}
|
{{/isBasicBasic}}{{#isApiKey}}
|
||||||
// Configure API key authorization: (authentication scheme: {{{name}}})
|
// Configure API key authorization: (authentication scheme: {{{name}}})
|
||||||
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"{{{keyParamName}}}"];
|
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"{{{keyParamName}}}"];
|
||||||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
||||||
|
@ -64,6 +64,9 @@ Class | Method | HTTP request | Description
|
|||||||
{{#isBasicBearer}}
|
{{#isBasicBearer}}
|
||||||
- **Type**: Bearer authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
- **Type**: Bearer authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{/isBasic}}
|
{{/isBasic}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
- **Type**: OAuth
|
- **Type**: OAuth
|
||||||
|
@ -142,7 +142,8 @@ Class | Method | HTTP request | Description
|
|||||||
{{#isBasic}}
|
{{#isBasic}}
|
||||||
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasicBasic}}{{#isBasicBearer}}- **Type**: Bearer authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
{{/isBasicBasic}}{{#isBasicBearer}}- **Type**: Bearer authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
{{/isBasicBearer}}
|
{{/isBasicBearer}}{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{/isBasic}}
|
{{/isBasic}}
|
||||||
{{#isOAuth}}
|
{{#isOAuth}}
|
||||||
|
|
||||||
|
@ -149,8 +149,12 @@ Class | Method | HTTP request | Description
|
|||||||
- **API key parameter name**: {{keyParamName}}
|
- **API key parameter name**: {{keyParamName}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -92,8 +92,12 @@ Class | Method | HTTP request | Description
|
|||||||
- **API key parameter name**: {{keyParamName}}
|
- **API key parameter name**: {{keyParamName}}
|
||||||
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
- **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}}
|
||||||
{{/isApiKey}}
|
{{/isApiKey}}
|
||||||
{{#isBasic}}- **Type**: HTTP basic authentication
|
{{#isBasicBasic}}- **Type**: HTTP basic authentication
|
||||||
{{/isBasic}}
|
{{/isBasicBasic}}
|
||||||
|
{{#isBasicBearer}}- **Type**: HTTP Bearer Token authentication{{#bearerFormat}} ({{{.}}}){{/bearerFormat}}
|
||||||
|
{{/isBasicBearer}}
|
||||||
|
{{#isHttpSignature}}- **Type**: HTTP signature authentication
|
||||||
|
{{/isHttpSignature}}
|
||||||
{{#isOAuth}}- **Type**: OAuth
|
{{#isOAuth}}- **Type**: OAuth
|
||||||
- **Flow**: {{flow}}
|
- **Flow**: {{flow}}
|
||||||
- **Authorization URL**: {{authorizationUrl}}
|
- **Authorization URL**: {{authorizationUrl}}
|
||||||
|
@ -112,7 +112,6 @@ Authentication schemes defined for the API:
|
|||||||
|
|
||||||
### api_key
|
### api_key
|
||||||
|
|
||||||
|
|
||||||
- **Type**: API key
|
- **Type**: API key
|
||||||
- **API key parameter name**: api_key
|
- **API key parameter name**: api_key
|
||||||
- **Location**: HTTP header
|
- **Location**: HTTP header
|
||||||
|
@ -280,4 +280,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -193,6 +193,7 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -193,6 +193,7 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -193,6 +193,7 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
@ -305,4 +305,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -292,4 +292,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -292,4 +292,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -292,4 +292,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -266,4 +266,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -280,4 +280,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -292,4 +292,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -242,4 +242,5 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -208,4 +208,5 @@ Authentication schemes defined for the API:
|
|||||||
|
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -208,4 +208,5 @@ Authentication schemes defined for the API:
|
|||||||
|
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -208,4 +208,5 @@ Authentication schemes defined for the API:
|
|||||||
|
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
@ -246,6 +246,7 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
@ -246,6 +246,7 @@ Authentication schemes defined for the API:
|
|||||||
<a id="http_signature_test"></a>
|
<a id="http_signature_test"></a>
|
||||||
### http_signature_test
|
### http_signature_test
|
||||||
|
|
||||||
|
- **Type**: HTTP signature authentication
|
||||||
|
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
Loading…
x
Reference in New Issue
Block a user