Daniel Grossmann-Kavanagh
Daniel Grossmann-Kavanagh
I used to be in favor of rejecting the entire message (strict behavior) when this was implemented, but I've since changed my opinion. One of the folks from the JSON...
I think this is closed by #1000 Please re-open if there's something I missed.
Another tool for resolving local references : https://github.com/wework/speccy
I am starting to think that this behavior is best left to a tool outside of connexion (like wework/speccy). Otherwise we have to sort out the problems in #798 related...
Hey @caffeinatedMike - In order to support path-altering reverse proxies (and multiple servers with various paths), there is code that uses `url_for` (in Flask) to look up the current host...
You should be able to override the behavior like this ```python class MyInternalHandlers(InternalHandlers): def _spec_for_prefix(self): return self.specification.raw class MyFlaskApi(FlaskApi): @property def _handlers(self): # type: () -> InternalHandlers if not hasattr(self,...
hey @caffeinatedMike - Here are some totally reasonable example of the servers block that need to be handled. ``` - / ``` ``` - /api/v0/ ``` ``` - https://www.mysite.tld/ -...
I think the support for coercing `int` to `str` is from swagger2.
One thing that is tricky about the servers block is that it makes a lot of sense for clients (here are all the servers you can go to, all of...
Yeah, sorry @WimDH I haven't had a chance to fully understand OpenID Connect and implement it. I've been trying to focus on getting the OpenAPI 3 support released with feature...