SpoonMeiser
SpoonMeiser
The original problem that the `X-Requested-With` header was added for (the browser does the wrong thing if you enter incorrect details) seems less of a problem than not being able...
In particular, PR #4934 concerns an oauth2 server that returns a header of `WWW-Authenticate: Basic ...` - "basic" here seems incorrect; is a bug with the server rather than swagger-ui?...
@aldredb @BeCharem can you check whether the changes in this branch on my fork fix the problem for you? https://github.com/SpoonMeiser/swagger-ui/tree/fix-cors-issue Turns out that it doesn't fix the problem I'm having,...
The redirect page is actually available as `/ui/oauth2-redirect.html` - it's just that it needs to send an absolute URL for the redirect and is unaware it needs to add the...
Yes, you can do this: options = { "swagger_ui_config": { "oauth2RedirectUrl": "localhost:8080/ui/oauth2-redirect.html" } } app = connexion.FlaskApp(__name__, specification_dir='openapi/', options=options) But it looks like you have to pass an absolute URL,...
I have the same issue, it looks like the same persistent `cat-file` command is used twice, but the first time, only the first line of output is read. Then, on...
The `data_stream` property contains the note: > :note: returned streams must be read in order Which makes for a really awkward interface because it temporally couples the calling code, but...
> I have a related issue. I have a linux system with multiple users, and whoever starts Inky first owns the /tmp/inky_compile folder and the other users cannot use Inky...
Looking into this, this looks like a platform independent way of creating a temporary directory: https://www.geeksforgeeks.org/node-js-fs-mkdtemp-method/ - in particular, is `os.tmpdir` not a platform independent way of determining the temp...
I created https://github.com/inkle/inky/pull/370 to address this