File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ requires these APIs.
8585 <dependency >
8686 <groupId >com.amilesend</groupId >
8787 <artifactId >tmdb-java-client</artifactId >
88- <version >3.2</version >
88+ <version >3.2.1 </version >
8989 </dependency >
9090 ```
91913 . Instantiate the client with the read access token:
@@ -182,6 +182,7 @@ or alternatively with [OkHttp's builder](https://square.github.io/okhttp/4.x/okh
182182OkHttpClient httpClient = OkHttpClientBuilder . builder()
183183 .trustManager(myX509TrustManager) // Custom trust manager for self/internally signed SSL/TLS certs
184184 .hostnameVerifier(myHostnameVerifier) // Custom hostname verification for SSL/TLS endpoints
185+ .addInterceptor(myInterceptor) // Custom okhttp interceptor (e.g., logging)
185186 .proxy(myProxy, myProxyUsername, myProxyPassword) // Proxy config
186187 .connectTimeout(8000L ) // connection timeout in milliseconds
187188 .readTimeout(5000L ) // read timeout in milliseconds
Original file line number Diff line number Diff line change 2525
2626 <groupId >com.amilesend</groupId >
2727 <artifactId >tmdb-java-client</artifactId >
28- <version >3.2.1-SNAPSHOT </version >
28+ <version >3.2.1</version >
2929
3030 <name >tmdb-java-client</name >
3131 <description >A client to access the TMDB API</description >
You can’t perform that action at this time.
0 commit comments