io.vertx.ext.web.client.HttpRequest.bearerTokenAuthentication()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(93)

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

HttpRequest.bearerTokenAuthentication介绍

暂无

代码示例

代码示例来源:origin: io.vertx/vertx-rx-java

/**
 * Configure the request to perform bearer token authentication.
 * <p>
 * In OAuth 2.0, a request contains a header field of the form 'Authorization: Bearer &#60;bearerToken&#62;',
 * where bearerToken is the bearer token issued by an authorization server to access protected resources.
 * </p>
 * @param bearerToken the bearer token
 * @return a reference to this, so the API can be used fluently
 */
public io.vertx.rxjava.ext.web.client.HttpRequest<T> bearerTokenAuthentication(String bearerToken) { 
 delegate.bearerTokenAuthentication(bearerToken);
 return this;
}

代码示例来源:origin: vert-x3/vertx-rx

/**
 * Configure the request to perform bearer token authentication.
 * <p>
 * In OAuth 2.0, a request contains a header field of the form 'Authorization: Bearer &#60;bearerToken&#62;',
 * where bearerToken is the bearer token issued by an authorization server to access protected resources.
 * </p>
 * @param bearerToken the bearer token
 * @return a reference to this, so the API can be used fluently
 */
public io.vertx.rxjava.ext.web.client.HttpRequest<T> bearerTokenAuthentication(String bearerToken) { 
 delegate.bearerTokenAuthentication(bearerToken);
 return this;
}

代码示例来源:origin: io.vertx/vertx-web-client

@Test
public void testBearerTokenAuthentication() throws Exception {
 testRequest(
  client -> client.get("somehost", "somepath").bearerTokenAuthentication("sometoken"),
  req -> {
   String auth = req.headers().get(HttpHeaders.AUTHORIZATION);
   assertEquals("Was expecting authorization header to contain a bearer token authentication string", "Bearer sometoken", auth);
  }
 );
}

相关文章