Tangui

Results 45 issues of Tangui

In https://github.com/bechurch/auth0_jwks/blob/3584412a04ae8c5a1ed3be221cf51134db294155/lib/plug/validate_token.ex#L15, only one space is parsed but according to the HTTP specifications there can be more. This could be a problem if the auth0 changed their request, while still...

The TCP option `TCP_CORK` can be used to coalesce headers with the file being sent with the `sendfile` syscall: > If you plan to use sendfile() for sending files to...

`httpc:request/5` function can be used to indicate a profile to use. It's particularly useful to set up proxies (socks & http) and that's actually the only way. This PR refactors...

See discussion https://groups.google.com/a/fidoalliance.org/g/fido-dev/c/d2ah4A1sLps/m/qNTcZmYwAwAJ

I'm proposing this PR after coming across mds.fidoalliance.org:443's certificate which doesn't contain a CRL. It recently switched to OCSP as far as I can see: ``` -----BEGIN CERTIFICATE----- MIIDuzCCA0GgAwIBAgISAwks8G62Fql4kngFvP910sQYMAoGCCqGSM49BAMDMDIx CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF...

Simply a suggestion, Tesla allows adding middlewares that could be useful, for instance: - logger, to see outgoing requests in dev env - telemetry - retry, in case we reach...

The field macro could allow any option and display it after the default value. This would look like: ```elixir field :some_interval, :nonnegative_integer, default: 30, unit: "seconds" field :scope_configuration, :term, type:...

enhancement
question

The idea is to restrict atoms or string to specific value. With the #9 bug, it would become possible to parse one of: `:one`, `:two`, `:three`, or `"RS256"`, `"RS384"`, `"RS512"`...

enhancement

Hi, I've tried to use the grammar at https://tools.ietf.org/html/rfc7644#section-3.4.2.2 with ex_abnf parser. Here is the file: [filter.txt](https://github.com/marcelog/ex_abnf/files/2872406/filter.txt) Had to add a few definitions from other specs (like ALPHA and DIGIT...