-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
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
Allow using any of the listed servers in api docu/spec #445
Comments
If you specify the base url explicitly in the connect command (using the That said, we should probably go ahead and add the ability to do that some other way - by index during connect or by another command after connect has occurred. |
@bradygaster This is something I'd be curious about your thoughts on from a UX perspective - since the servers are only identified by a url (and implicitly by index), what would be the correct experience for a user to specify? It sort of seems like the Thoughts? |
Curious what @embix would say if we implied his YAML island above required a servers:
- url: https://staging.api.company.com
description: staging (always requires auth)
- url: https://localhost:5001/
description: local dev/test server with tls
- url: http://localhost:5000/
description: local dev/test server ... and turn it into something like this? environments:
- url: https://staging.api.company.com
description: staging (always requires auth)
tag: staging
- url: https://localhost:5001/
description: local dev/test server with tls
tag: localhost-https
- url: http://localhost:5000/
description: local dev/test server
tag: localhost Would we want to extend it further to enable multiple-API support? Something like: apis:
name: products
environments:
- url: https://staging.api.company.com
description: staging (always requires auth)
tag: staging
- url: https://localhost:5001/
description: local dev/test server with tls
tag: localhost-https
- url: http://localhost:5000/
description: local dev/test server
tag: localhost |
@bradygaster I'm not sure how we can support this - that YAML snippet from @embix is just a piece of his OpenAPI description (the servers field of the main OpenAPI object) so we can't really modify what we expect there. Unless I'm missing something from what you're describing. As a side note, I think its odd that the spec doesn't support explicitly named environments or anything like that. But as far as I can tell, it doesn't. |
Ah, good to know, not seeing that YAML in the context of the full spec got me a little off-track. Good point. Don't know about the naming-of-servers, but I feel confident @darrelmiller would know if that's either already been discussed/requested and if so, why we don't have it. :) Maybe we just craft ourselves some HttpRepl-specific OpenAPI extensions and watch him squirm a little? :) |
Exactly. Even if we explicitly tamper with the auto generation to insert We could however use something like servers OT: if links are not pointing to the correct section it's because they use some js magic fiddling with html anchors unfortunately. |
We currently have a service returning multiple servers
If I connect to localhost:5001 it retrieves the swagger/openapi and uses staging instead of the instance wanted to connected to. It seems like
httprepl
always uses the first server. Is there any way we can make it use another one?The text was updated successfully, but these errors were encountered: