Skip to content

feature request: Set http client #132

Open
@dennypenta

Description

@dennypenta

What problem did you meet?

Injecting a http client as a dependency is necessary for observability and the others purposes.
For instance, in order to send a trace to OTLP trace provider we have to use our implementation of http.Client with custom http.Transport.

Describe what you'd like Logto to have

There are following options to achieve it:

func WithHttpClient(c *http.Client) func(*LogtoClient) {
  return func(logtoClient *LogtoClient) {
    logtoClient.httpClient = c
  }
}
  • Add a setter for http.Client, In my opinion it shouldn't be thread safe, the client must be instantiate on the dependencies build step
func (logtoClient *LogtoClient) SetHttpClient(c *http.Client) {
  logtoClient.httpClient = c
}

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions