Error in Volley Patch

前端 未结 2 2001

com.android.volley.NoConnectionError: java.net.ProtocolException: Unknown method \'PATCH\'; must be one of [OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE]

Str         


        
2条回答
  •  抹茶落季
    2021-01-18 03:53

    While sending request use POST. In headers just override http method to PATCH. For me now its working in volley even in kitkat version.

    header.put("X-HTTP-Method-Override", "PATCH");
    

提交回复
热议问题