Auto Mocking Plugin
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Auto Mocking Plugin
Hello,
When I add in a Host and basePath, the Auto Mocking Plugin overrides this.
Is there anyway to stop this happening?
Regards,
Steve
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, you can do this by removing the Auto Mock integration from the API. This is done on the integrations menu in the SwaggerHub editor.
Here are some documentation pages to help you:
https://app.swaggerhub.com/help/integrations/api-auto-mocking
https://app.swaggerhub.com/help/integrations/index
Hope that helps.
Regards,
Tim
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Steve,
To prevent the host and basePath from being overwritten, disable the "Update host setting" option in API Auto Mocking settings. In this case, the API definition and "try it out" will point to your original host/basePath, but you can still make requests to the mock server using cURL, Swagger Inspector, or similar tools.
curl -X GET https://virtserver.swaggerhub.com/MyOrg/MyApi/1.0.0/<endpoint_path>
Alternatively, consider using OpenAPI 3.0 instead - in this case the mock server will be added as a separate entry in the servers list:
servers:
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/MyOrg/MyApi/1.0.0
- url: 'https://petstore.swagger.io/v2'
Helen Kosova
SmartBear Documentation Team Lead
________________________
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
