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
Steps to reproduce:
On the v2.1.3 tag, open dist/index.html in a web browser which will open the pet api ui
Add an api key to the input box and click explore
Select the "Get User/{username}" and enter user1 into the username input box.
click "try it out"
you should get a 200.
In the Request URL field you should see:
Request URL
http://petstore.swagger.io/v2/user/user1?api_key=myFunkyKey
In the Curl field you should see:
Curl
curl -X GET --header "Accept: application/json" "http://petstore.swagger.io/v2/user/user1?api_key=myFunkyKey&api_key=myFunkyKey"
Note that the api key is duplicated.
The text was updated successfully, but these errors were encountered:
fixed in efb7765
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
On the v2.1.3 tag, open dist/index.html in a web browser which will open the pet api ui
Add an api key to the input box and click explore
Select the "Get User/{username}" and enter user1 into the username input box.
click "try it out"
you should get a 200.
In the
Request URL
field you should see:http://petstore.swagger.io/v2/user/user1?api_key=myFunkyKey
In the
Curl
field you should see:curl -X GET --header "Accept: application/json" "http://petstore.swagger.io/v2/user/user1?api_key=myFunkyKey&api_key=myFunkyKey"
Note that the api key is duplicated.
The text was updated successfully, but these errors were encountered: