Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for composeQueryWithEncodedComponents (0.14 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        // Ambiguous! (Though working as designed.)
        assertThat(url.query).isEqualTo("a+=& b=c+=& d")
        assertThat(url.encodedQuery).isEqualTo("a%2B%3D%26%20b=c%2B%3D%26%20d")
      }
    
      @Test
      fun composeQueryWithEncodedComponents() {
        val base = parse("http://host/")
        val url =
          base
            .newBuilder()
            .addEncodedQueryParameter("a+=& b", "c+=& d")
            .build()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top