本文整理了Java中io.vertx.ext.web.client.HttpRequest.bearerTokenAuthentication()
方法的一些代码示例,展示了HttpRequest.bearerTokenAuthentication()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpRequest.bearerTokenAuthentication()
方法的具体详情如下:
包路径:io.vertx.ext.web.client.HttpRequest
类名称: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 <bearerToken>',
* 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 <bearerToken>',
* 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);
}
);
}
内容来源于网络,如有侵权,请联系作者删除!