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
Is your feature request related to a problem? Please describe.
Yes, the current implementation does not allow overriding the internal HttpClient used for making requests. This limitation prevents us from integrating tools like Datadog or Firebase Performance Monitor to observe, log, and analyze HTTP requests. Without this capability, it is challenging to track and optimize network performance effectively.
Describe the solution you'd like
I would like the ability to override or configure the HttpClient that your library uses internally for making HTTP requests. This would enable developers to inject custom HttpClient instances, which could include necessary integrations (e.g., handlers or interceptors) for tools like Datadog or Firebase Performance Monitor.
Describe alternatives you've considered
I can use HTTP Overrides without this, but it seems harder than supporting it from the library itself.
Send the custom HttpClient on the constructor the Player
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Yes, the current implementation does not allow overriding the internal
HttpClient
used for making requests. This limitation prevents us from integrating tools like Datadog or Firebase Performance Monitor to observe, log, and analyze HTTP requests. Without this capability, it is challenging to track and optimize network performance effectively.Describe the solution you'd like
I would like the ability to override or configure the
HttpClient
that your library uses internally for making HTTP requests. This would enable developers to inject customHttpClient
instances, which could include necessary integrations (e.g., handlers or interceptors) for tools like Datadog or Firebase Performance Monitor.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: