We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Everytime we generate the API from generator/api.json the function Dandelion.prototype.setToken is set as:
Dandelion.prototype.setToken = function(value,headerOrQueryName,isQuery) { this.token.value = value; this.token.headerOrQueryName = headerOrQueryName; this.token.isQuery = isQuery; };
As the latter two parameters are always fixed, we should find a way to specify this using the api.json file.
Dandelion.prototype.setToken = function(value) { this.token.value = value; this.token.headerOrQueryName = 'token'; this.token.isQuery = true; };
It seems that this is not having any effect:
"securityDefinitions": { "api_key": { "type": "apiKey", "name": "token", "in": "query" } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Everytime we generate the API from generator/api.json the function Dandelion.prototype.setToken is set as:
As the latter two parameters are always fixed, we should find a way to specify this using the api.json file.
It seems that this is not having any effect:
The text was updated successfully, but these errors were encountered: