Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for followSslRedirects (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

       *
       * Client configuration may be used to make follow-up decisions, such as:
       *
       *  * [OkHttpClient.followRedirects] must be true to follow redirects.
       *  * [OkHttpClient.followSslRedirects] must be true to follow redirects that add or remove HTTPS.
       *  * [OkHttpClient.authenticator] must respond to an authorization challenge.
       *
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 21:03:04 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

          MockResponse(
            code = 301,
            headers = headersOf("Location", "http://square.com"),
          ),
        )
        client =
          client
            .newBuilder()
            .followSslRedirects(false)
            .build()
        val request = Request.Builder().url(server.url("/")).build()
        val response = client.newCall(request).execute()
        assertThat(response.code).isEqualTo(301)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 146.5K bytes
    - Click Count (0)
Back to Top