Class HttpBody

    • Method Detail

      • json

        public static HttpBody json​(byte[] json)
        Creates an HTTP body with content type "application/json" and the given content.
      • json

        public static HttpBody json​(String json)
        Creates an HTTP body with content type "application/json" and the given content.
      • form

        public static HttpBody form​(Map<String,​?> data)
        Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.

        This method URL-encodes the names and values; make sure the names and values you pass in are *NOT* already URL-encoded.

      • form

        public static HttpBody form​(List<NameValuePair> data)
        Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.

        This method URL-encodes the names and values; make sure the names and values you pass in are *NOT* already URL-encoded.

      • form

        public static HttpBody form​(NameValuePair... data)
        Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.

        This method URL-encodes the names and values; make sure the names and values you pass in are *NOT* already URL-encoded.

      • form

        public static HttpBody form​(NameValuePairs data)
        Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.

        This method URL-encodes the names and values; make sure the names and values you pass in are *NOT* already URL-encoded.