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

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

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

Request.newBuilder介绍

暂无

代码示例

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

  1. @Override public Response intercept(Chain chain) throws IOException {
  2. Request request = chain.request();
  3. if (request.url().host().equals(host)) {
  4. request = request.newBuilder()
  5. .header("Authorization", credentials)
  6. .build();
  7. }
  8. return chain.proceed(request);
  9. }
  10. }

代码示例来源:origin: bumptech/glide

  1. @Override
  2. public Response intercept(Chain chain) throws IOException {
  3. return chain.proceed(
  4. chain.request()
  5. .newBuilder()
  6. .addHeader("Authorization", "Client-ID " + ImgurService.CLIENT_ID)
  7. .build());
  8. }
  9. })

代码示例来源:origin: prestodb/presto

  1. public static Interceptor userAgent(String userAgent)
  2. {
  3. return chain -> chain.proceed(chain.request().newBuilder()
  4. .header(USER_AGENT, userAgent)
  5. .build());
  6. }

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

  1. @Override public okhttp3.Response intercept(Chain chain) throws IOException {
  2. Request request = chain.request();
  3. String host = this.host;
  4. if (host != null) {
  5. HttpUrl newUrl = request.url().newBuilder()
  6. .host(host)
  7. .build();
  8. request = request.newBuilder()
  9. .url(newUrl)
  10. .build();
  11. }
  12. return chain.proceed(request);
  13. }
  14. }

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

  1. @Override public Request authenticate(Route route, Response response) throws IOException {
  2. if (response.request().header("Authorization") != null) {
  3. return null; // Give up, we've already attempted to authenticate.
  4. }
  5. System.out.println("Authenticating for response: " + response);
  6. System.out.println("Challenges: " + response.challenges());
  7. String credential = Credentials.basic("jesse", "password1");
  8. return response.request().newBuilder()
  9. .header("Authorization", credential)
  10. .build();
  11. }
  12. })

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

  1. private @Nullable Response getCacheOnlyResponse(Request request) {
  2. if (!post && client.cache() != null) {
  3. try {
  4. Request cacheRequest = request.newBuilder().cacheControl(CacheControl.FORCE_CACHE).build();
  5. Response cacheResponse = client.newCall(cacheRequest).execute();
  6. if (cacheResponse.code() != 504) {
  7. return cacheResponse;
  8. }
  9. } catch (IOException ioe) {
  10. // Failures are ignored as we can fallback to the network
  11. // and hopefully repopulate the cache.
  12. }
  13. }
  14. return null;
  15. }

代码示例来源: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: SonarSource/sonarqube

  1. private Response addHeaders(Interceptor.Chain chain) throws IOException {
  2. Request.Builder newRequest = chain.request().newBuilder();
  3. if (userAgent != null) {
  4. newRequest.header("User-Agent", userAgent);
  5. }
  6. if (credentials != null) {
  7. newRequest.header("Authorization", credentials);
  8. }
  9. return chain.proceed(newRequest.build());
  10. }

代码示例来源:origin: runelite/runelite

  1. @Override
  2. public Response intercept(Chain chain) throws IOException
  3. {
  4. Request userAgentRequest = chain.request()
  5. .newBuilder()
  6. .header("User-Agent", USER_AGENT)
  7. .build();
  8. return chain.proceed(userAgentRequest);
  9. }
  10. })

代码示例来源:origin: prestodb/presto

  1. public static Interceptor basicAuth(String user, String password)
  2. {
  3. requireNonNull(user, "user is null");
  4. requireNonNull(password, "password is null");
  5. if (user.contains(":")) {
  6. throw new ClientException("Illegal character ':' found in username");
  7. }
  8. String credential = Credentials.basic(user, password);
  9. return chain -> chain.proceed(chain.request().newBuilder()
  10. .header(AUTHORIZATION, credential)
  11. .build());
  12. }

代码示例来源:origin: prestodb/presto

  1. public static Interceptor tokenAuth(String accessToken)
  2. {
  3. requireNonNull(accessToken, "accessToken is null");
  4. checkArgument(CharMatcher.inRange((char) 33, (char) 126).matchesAllOf(accessToken));
  5. return chain -> chain.proceed(chain.request().newBuilder()
  6. .addHeader(AUTHORIZATION, "Bearer " + accessToken)
  7. .build());
  8. }

代码示例来源:origin: jaydenxiao2016/AndroidFire

  1. @Override
  2. public Response intercept(Chain chain) throws IOException {
  3. Request build = chain.request().newBuilder()
  4. .addHeader("Content-Type", "application/json")
  5. .build();
  6. return chain.proceed(build);
  7. }
  8. };

代码示例来源: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: allure-framework/allure2

  1. @Override
  2. public Response intercept(final Interceptor.Chain chain) throws IOException {
  3. final Request request = chain.request();
  4. final Request authenticatedRequest = request.newBuilder()
  5. .header("Authorization", credentials).build();
  6. return chain.proceed(authenticatedRequest);
  7. }

代码示例来源:origin: prestodb/presto

  1. private Request authenticate(Request request)
  2. {
  3. String hostName = request.url().host();
  4. String principal = makeServicePrincipal(remoteServiceName, hostName, useCanonicalHostname);
  5. byte[] token = generateToken(principal);
  6. String credential = format("%s %s", NEGOTIATE, Base64.getEncoder().encodeToString(token));
  7. return request.newBuilder()
  8. .header(AUTHORIZATION, credential)
  9. .build();
  10. }

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

  1. @Override public Response intercept(Chain chain) throws IOException {
  2. Request request = chain.request();
  3. Headers newHeaders = request.headers()
  4. .newBuilder()
  5. .add("Date", new Date())
  6. .build();
  7. Request newRequest = request.newBuilder()
  8. .headers(newHeaders)
  9. .build();
  10. return chain.proceed(newRequest);
  11. }
  12. }

代码示例来源:origin: HotBitmapGG/bilibili-android-client

  1. @Override
  2. public Response intercept(Chain chain) throws IOException {
  3. Request originalRequest = chain.request();
  4. Request requestWithUserAgent = originalRequest.newBuilder()
  5. .removeHeader("User-Agent")
  6. .addHeader("User-Agent", ApiConstants.COMMON_UA_STR)
  7. .build();
  8. return chain.proceed(requestWithUserAgent);
  9. }
  10. }

代码示例来源:origin: apache/nifi

  1. @Nullable
  2. @Override
  3. public Request authenticate(Route route, Response response) throws IOException {
  4. String credential = Credentials.basic(proxyUsername, proxyPassword);
  5. return response.request()
  6. .newBuilder()
  7. .header("Proxy-Authorization", credential)
  8. .build();
  9. }
  10. }

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

  1. /**
  2. * Now that we've buffered the entire request body, update the request headers and the body
  3. * itself. This happens late to enable HttpURLConnection users to complete the socket connection
  4. * before sending request body bytes.
  5. */
  6. @Override public Request prepareToSendRequest(Request request) throws IOException {
  7. if (request.header("Content-Length") != null) return request;
  8. outputStream().close();
  9. contentLength = buffer.size();
  10. return request.newBuilder()
  11. .removeHeader("Transfer-Encoding")
  12. .header("Content-Length", Long.toString(buffer.size()))
  13. .build();
  14. }

代码示例来源:origin: googlemaps/google-maps-services-java

  1. @Override
  2. public Request authenticate(Route route, Response response) throws IOException {
  3. String credential = Credentials.basic(userName, password);
  4. return response
  5. .request()
  6. .newBuilder()
  7. .header("Proxy-Authorization", credential)
  8. .build();
  9. }
  10. });

相关文章