You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes configs resides under urls, where some kind of URLConnection request properties configuring capability is required.
For example, if we set -Dconfig.url="https://url_here_my_config_is_residing/my_config.conf" and the server requires some kind of authentication, e.g. via Bearer token, it would return Not Found. To tackle it down, we have to set:
However, currently, a library consumer is only able to configure accept request property (link).
@havocp and @akka-team wouldn't it be more beneficial to add a capability of passing some kind of Map request properties defined by a library consumer,
to be more flexible around configuring underlying URLConnection ? At least to configure Authorization (e.g. -Dconfig.authorization=...)
The text was updated successfully, but these errors were encountered:
Sometimes configs resides under urls, where some kind of URLConnection request properties configuring capability is required.
For example, if we set
-Dconfig.url="https://url_here_my_config_is_residing/my_config.conf"
and the server requires some kind of authentication, e.g. viaBearer
token, it would returnNot Found
. To tackle it down, we have to set:However, currently, a library consumer is only able to configure
accept
request property (link).@havocp and @akka-team wouldn't it be more beneficial to add a capability of passing some kind of
Map
request properties defined by a library consumer,to be more flexible around configuring underlying
URLConnection
? At least to configureAuthorization
(e.g.-Dconfig.authorization=...
)The text was updated successfully, but these errors were encountered: