WithAccessTokenVerifyMethod provides a function to set the accessTokenVerifyMethod option.
(val string)
| 69 | |
| 70 | // WithAccessTokenVerifyMethod provides a function to set the accessTokenVerifyMethod option. |
| 71 | func WithAccessTokenVerifyMethod(val string) Option { |
| 72 | return func(o *Options) { |
| 73 | o.AccessTokenVerifyMethod = val |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | // WithHTTPClient provides a function to set the httpClient option. |
| 78 | func WithHTTPClient(val *http.Client) Option { |
no outgoing calls
no test coverage detected