okhttp3.Request.method()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(8.9k)|赞(0)|评价(0)|浏览(386)

本文整理了Java中okhttp3.Request.method方法的一些代码示例,展示了Request.method的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.method方法的具体详情如下:
包路径:okhttp3.Request
类名称:Request
方法名:method

Request.method介绍

暂无

代码示例

代码示例来源:origin: square/okhttp

  1. @Override
  2. public String getRequestMethod() {
  3. return request.method();
  4. }

代码示例来源:origin: facebook/stetho

  1. @Override
  2. public String method() {
  3. return mRequest.method();
  4. }

代码示例来源:origin: square/okhttp

  1. public boolean matches(Request request, Response response) {
  2. return url.equals(request.url().toString())
  3. && requestMethod.equals(request.method())
  4. && HttpHeaders.varyMatches(response, varyHeaders, request);
  5. }

代码示例来源:origin: square/okhttp

  1. CacheHttpURLConnection(Response response) {
  2. super(response.request().url().url());
  3. this.request = response.request();
  4. this.response = response;
  5. // Configure URLConnection inherited fields.
  6. this.connected = true;
  7. this.doOutput = request.body() != null;
  8. this.doInput = true;
  9. this.useCaches = true;
  10. // Configure HttpUrlConnection inherited fields.
  11. this.method = request.method();
  12. }

代码示例来源:origin: square/okhttp

  1. /**
  2. * Returns the request status line, like "GET / HTTP/1.1". This is exposed to the application by
  3. * {@link HttpURLConnection#getHeaderFields}, so it needs to be set even if the transport is
  4. * HTTP/2.
  5. */
  6. public static String get(Request request, Proxy.Type proxyType) {
  7. StringBuilder result = new StringBuilder();
  8. result.append(request.method());
  9. result.append(' ');
  10. if (includeAuthorityInRequestLine(request, proxyType)) {
  11. result.append(request.url());
  12. } else {
  13. result.append(requestPath(request.url()));
  14. }
  15. result.append(" HTTP/1.1");
  16. return result.toString();
  17. }

代码示例来源:origin: square/okhttp

  1. @Override public Response intercept(Chain chain) throws IOException {
  2. Request originalRequest = chain.request();
  3. if (originalRequest.body() == null || originalRequest.header("Content-Encoding") != null) {
  4. return chain.proceed(originalRequest);
  5. }
  6. Request compressedRequest = originalRequest.newBuilder()
  7. .header("Content-Encoding", "gzip")
  8. .method(originalRequest.method(), gzip(originalRequest.body()))
  9. .build();
  10. return chain.proceed(compressedRequest);
  11. }

代码示例来源:origin: square/okhttp

  1. Entry(Response response) {
  2. this.url = response.request().url().toString();
  3. this.varyHeaders = HttpHeaders.varyHeaders(response);
  4. this.requestMethod = response.request().method();
  5. this.protocol = response.protocol();
  6. this.code = response.code();
  7. this.message = response.message();
  8. this.responseHeaders = response.headers();
  9. this.handshake = response.handshake();
  10. this.sentRequestMillis = response.sentRequestAtMillis();
  11. this.receivedResponseMillis = response.receivedResponseAtMillis();
  12. }

代码示例来源:origin: square/okhttp

  1. /** Returns true if the response must have a (possibly 0-length) body. See RFC 7231. */
  2. public static boolean hasBody(Response response) {
  3. // HEAD requests never yield a body regardless of the response headers.
  4. if (response.request().method().equals("HEAD")) {
  5. return false;
  6. }
  7. int responseCode = response.code();
  8. if ((responseCode < HTTP_CONTINUE || responseCode >= 200)
  9. && responseCode != HTTP_NO_CONTENT
  10. && responseCode != HTTP_NOT_MODIFIED) {
  11. return true;
  12. }
  13. // If the Content-Length or Transfer-Encoding headers disagree with the response code, the
  14. // response is malformed. For best compatibility, we honor the headers.
  15. if (contentLength(response) != -1
  16. || "chunked".equalsIgnoreCase(response.header("Transfer-Encoding"))) {
  17. return true;
  18. }
  19. return false;
  20. }

代码示例来源:origin: stackoverflow.com

  1. OkHttpClient okClient = new OkHttpClient();
  2. okClient.interceptors().add(new Interceptor() {
  3. @Override
  4. public Response intercept(Interceptor.Chain chain) throws IOException {
  5. Request original = chain.request();
  6. // Request customization: add request headers
  7. Request.Builder requestBuilder = original.newBuilder()
  8. .header("Authorization", token)
  9. .method(original.method(), original.body());
  10. Request request = requestBuilder.build();
  11. return chain.proceed(request);
  12. }
  13. });

代码示例来源:origin: square/okhttp

  1. public RealWebSocket(Request request, WebSocketListener listener, Random random,
  2. long pingIntervalMillis) {
  3. if (!"GET".equals(request.method())) {
  4. throw new IllegalArgumentException("Request must be GET: " + request.method());
  5. }
  6. this.originalRequest = request;
  7. this.listener = listener;
  8. this.random = random;
  9. this.pingIntervalMillis = pingIntervalMillis;
  10. byte[] nonce = new byte[16];
  11. random.nextBytes(nonce);
  12. this.key = ByteString.of(nonce).base64();
  13. this.writerRunnable = () -> {
  14. try {
  15. while (writeOneFrame()) {
  16. }
  17. } catch (IOException e) {
  18. failWebSocket(e, null);
  19. }
  20. };
  21. }

代码示例来源:origin: com.squareup.okhttp3/okhttp

  1. public boolean matches(Request request, Response response) {
  2. return url.equals(request.url().toString())
  3. && requestMethod.equals(request.method())
  4. && HttpHeaders.varyMatches(response, varyHeaders, request);
  5. }

代码示例来源:origin: square/okhttp

  1. /**
  2. * Returns the {@link CacheResponse} from the delegate by converting the OkHttp {@link Request}
  3. * into the arguments required by the {@link ResponseCache}.
  4. */
  5. private CacheResponse getJavaCachedResponse(Request request) throws IOException {
  6. Map<String, List<String>> headers = JavaApiConverter.extractJavaHeaders(request);
  7. return delegate.get(request.url().uri(), request.method(), headers);
  8. }
  9. }

代码示例来源:origin: stackoverflow.com

  1. OkHttpClient okClient = new OkHttpClient.Builder()
  2. .addInterceptor(
  3. new Interceptor() {
  4. @Override
  5. public Response intercept(Interceptor.Chain chain) throws IOException {
  6. Request original = chain.request();
  7. // Request customization: add request headers
  8. Request.Builder requestBuilder = original.newBuilder()
  9. .header("Authorization", token)
  10. .method(original.method(), original.body());
  11. Request request = requestBuilder.build();
  12. return chain.proceed(request);
  13. }
  14. })
  15. .build();

代码示例来源:origin: square/okhttp

  1. @Override public Response intercept(Chain chain) throws IOException {
  2. RealInterceptorChain realChain = (RealInterceptorChain) chain;
  3. Request request = realChain.request();
  4. StreamAllocation streamAllocation = realChain.streamAllocation();
  5. // We need the network to satisfy this request. Possibly for validating a conditional GET.
  6. boolean doExtensiveHealthChecks = !request.method().equals("GET");
  7. HttpCodec httpCodec = streamAllocation.newStream(client, chain, doExtensiveHealthChecks);
  8. RealConnection connection = streamAllocation.connection();
  9. return realChain.proceed(request, streamAllocation, httpCodec, connection);
  10. }
  11. }

代码示例来源:origin: com.squareup.okhttp3/okhttp

  1. Entry(Response response) {
  2. this.url = response.request().url().toString();
  3. this.varyHeaders = HttpHeaders.varyHeaders(response);
  4. this.requestMethod = response.request().method();
  5. this.protocol = response.protocol();
  6. this.code = response.code();
  7. this.message = response.message();
  8. this.responseHeaders = response.headers();
  9. this.handshake = response.handshake();
  10. this.sentRequestMillis = response.sentRequestAtMillis();
  11. this.receivedResponseMillis = response.receivedResponseAtMillis();
  12. }

代码示例来源:origin: square/okhttp

  1. public static List<Header> http2HeadersList(Request request) {
  2. Headers headers = request.headers();
  3. List<Header> result = new ArrayList<>(headers.size() + 4);
  4. result.add(new Header(TARGET_METHOD, request.method()));
  5. result.add(new Header(TARGET_PATH, RequestLine.requestPath(request.url())));
  6. String host = request.header("Host");
  7. if (host != null) {
  8. result.add(new Header(TARGET_AUTHORITY, host)); // Optional.
  9. }
  10. result.add(new Header(TARGET_SCHEME, request.url().scheme()));
  11. for (int i = 0, size = headers.size(); i < size; i++) {
  12. // header names must be lowercase.
  13. String name = headers.name(i).toLowerCase(Locale.US);
  14. if (!HTTP_2_SKIPPED_REQUEST_HEADERS.contains(name)
  15. || name.equals(TE) && headers.value(i).equals("trailers")) {
  16. result.add(new Header(name, headers.value(i)));
  17. }
  18. }
  19. return result;
  20. }

代码示例来源:origin: amitshekhariitbhu/Fast-Android-Networking

  1. @Override
  2. public Response intercept(Chain chain) throws IOException {
  3. Request originalRequest = chain.request();
  4. if (originalRequest.body() == null || originalRequest.header("Content-Encoding") != null) {
  5. return chain.proceed(originalRequest);
  6. }
  7. Request compressedRequest = originalRequest.newBuilder()
  8. .header("Content-Encoding", "gzip")
  9. .method(originalRequest.method(), forceContentLength(gzip(originalRequest.body())))
  10. .build();
  11. return chain.proceed(compressedRequest);
  12. }

代码示例来源:origin: square/okhttp

  1. @Nullable CacheRequest put(Response response) {
  2. String requestMethod = response.request().method();
  3. if (HttpMethod.invalidatesCache(response.request().method())) {
  4. try {
  5. remove(response.request());

代码示例来源:origin: JessYanCoding/MVPArms

  1. private static String[] getRequest(Request request) {
  2. String log;
  3. String header = request.headers().toString();
  4. log = METHOD_TAG + request.method() + DOUBLE_SEPARATOR +
  5. (isEmpty(header) ? "" : HEADERS_TAG + LINE_SEPARATOR + dotHeaders(header));
  6. return log.split(LINE_SEPARATOR);
  7. }

代码示例来源:origin: com.squareup.okhttp3/okhttp

  1. @Override public Response intercept(Chain chain) throws IOException {
  2. RealInterceptorChain realChain = (RealInterceptorChain) chain;
  3. Request request = realChain.request();
  4. StreamAllocation streamAllocation = realChain.streamAllocation();
  5. // We need the network to satisfy this request. Possibly for validating a conditional GET.
  6. boolean doExtensiveHealthChecks = !request.method().equals("GET");
  7. HttpCodec httpCodec = streamAllocation.newStream(client, chain, doExtensiveHealthChecks);
  8. RealConnection connection = streamAllocation.connection();
  9. return realChain.proceed(request, streamAllocation, httpCodec, connection);
  10. }
  11. }

相关文章