Mateusz Pietryga

Results 27 issues of Mateusz Pietryga

The [Configuration](https://github.com/PixlOne/logiops/wiki/Configuration) page of the wiki is quite hard to read because of lack of indentation in markdown. I found it hard to follow and clearly distinguish between gestures and...

How is void initConsole(unsigned short *title, wchar_t *fontName, int fontx, int fonty ) called by initConsole(TEXT("Ascii Engine v1.02"), TEXT("Lucida Console"), 8, 8 ); in main.c ? The first parameter type...

In a test environment it may be expected to have some auth server not properly secured with TLS (domain mismatch/self-signed cert/etc). Although Bruno honors my customizations to TLS verificication when...

# Description OAuth2 configuration should allow empty `scope` or `Callback URL` fields, as these are optional. ### Contribution Checklist: - [x] **The pull request only addresses one issue or adds...

Oauth2 flow fails with [Keycloak](https://github.com/keycloak/keycloak). Bruno gets 400 - Bad Request, and the Keycloak server logs: ``` INFO [org.keycloak.protocol.oidc.utils.PkceUtils] (executor-thread-10) Error: PKCE codeVerifier length under lower limit , codeVerifier =...

Bruno 1.11.0 When setting the OAuth2 auth method on a GET request, Bruno attempts to obtain Access Token from token endpoint also using GET. The [specs](https://www.rfc-editor.org/rfc/rfc6749#page-21) however mandates that >...

Bruno will not accept OAuth2 configuration with scope or callback url missing. These however are optional parameters accorinng to the [specs](https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.1), and authorization server may accept the request without these....

# Description The client MUST use the HTTP "POST" method when making access token requests. ### Contribution Checklist: - [x] **The pull request only addresses one issue or adds one...

As per [RFC 7636: Proof Key for Code Exchange](https://www.rfc-editor.org/rfc/rfc7636#page-8) we should expect code verifier to be at least 43 characters after URL encode. Current implementation only gives only 32. Fixes...

# Description The client MUST use the HTTP "POST" method when making access token requests. ### Contribution Checklist: - [x] **The pull request only addresses one issue or adds one...