Skip to content

Instantly share code, notes, and snippets.

@alexanderjamesking
Created July 15, 2015 10:01
Show Gist options
  • Save alexanderjamesking/c6e16d7b49021038f59e to your computer and use it in GitHub Desktop.
Save alexanderjamesking/c6e16d7b49021038f59e to your computer and use it in GitHub Desktop.
Useful Wiremock Calls
Useful Wiremock Calls
# View all stubbed enpoints (GET)
http://localhost:11111/__admin/
# View all requests to WM (POST)
http://localhost:11111/__admin/requests/find
body:
{
"method": "ANY",
"urlPattern": "/.*"
}
# View only KS requests (POST)
http://localhost:11111/__admin/requests/find
body:
{
"method": "ANY",
"urlPattern": "/keystore.*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment