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
I came across this when using the eBay OpenAPI spec, see: https://developer.ebay.com/api-docs/sell/inventory/resources/methods
The server url has the following format:
{ "servers": [ { "url": "https://api.ebay.com{basePath}", "description": "Production", "variables": { "basePath": { "default": "/sell/inventory/v1" } } } ], }
But the code to get the server url does not replace the variables:
openapi-psr7-validator/src/PSR7/PathFinder.php
Line 190 in a665e22
So end up with the error: OpenAPI spec contains no such operation [/sell/inventory/v1/inventory_item/sku]
OpenAPI spec contains no such operation [/sell/inventory/v1/inventory_item/sku]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I came across this when using the eBay OpenAPI spec, see: https://developer.ebay.com/api-docs/sell/inventory/resources/methods
The server url has the following format:
But the code to get the server url does not replace the variables:
openapi-psr7-validator/src/PSR7/PathFinder.php
Line 190 in a665e22
So end up with the error:
OpenAPI spec contains no such operation [/sell/inventory/v1/inventory_item/sku]
The text was updated successfully, but these errors were encountered: