本文整理匯總了Java中cz.msebera.android.httpclient.auth.Credentials類的典型用法代碼示例。如果您正苦於以下問題:Java Credentials類的具體用法?Java Credentials怎麽用?Java Credentials使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Credentials類屬於cz.msebera.android.httpclient.auth包,在下文中一共展示了Credentials類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: process
import cz.msebera.android.httpclient.auth.Credentials; //導入依賴的package包/類
public void process(final HttpRequest request, final HttpContext context) throws HttpException, IOException {
AuthState authState = (AuthState) context.getAttribute(ClientContext.TARGET_AUTH_STATE);
CredentialsProvider credsProvider = (CredentialsProvider) context.getAttribute(
ClientContext.CREDS_PROVIDER);
HttpHost targetHost = (HttpHost) context.getAttribute(ExecutionContext.HTTP_TARGET_HOST);
if (authState.getAuthScheme() == null) {
AuthScope authScope = new AuthScope(targetHost.getHostName(), targetHost.getPort());
Credentials creds = credsProvider.getCredentials(authScope);
if (creds != null) {
authState.setAuthScheme(new BasicScheme());
authState.setCredentials(creds);
}
}
}
示例2: setCredentials
import cz.msebera.android.httpclient.auth.Credentials; //導入依賴的package包/類
public void setCredentials(AuthScope authScope, Credentials credentials) {
if (credentials == null) {
log.d(LOG_TAG, "Provided credentials are null, not setting");
return;
}
this.httpClient.getCredentialsProvider().setCredentials(authScope == null ? AuthScope.ANY : authScope, credentials);
}
示例3: authenticate
import cz.msebera.android.httpclient.auth.Credentials; //導入依賴的package包/類
@Override
public Header authenticate(Credentials credentials, HttpRequest request, HttpContext httpContext)
throws AuthenticationException {
CharArrayBuffer buffer = new CharArrayBuffer(32);
buffer.append(AUTH.WWW_AUTH_RESP);
buffer.append(": Bearer ");
buffer.append(credentials.getUserPrincipal().getName());
return new BufferedHeader(buffer);
}