當前位置: 首頁>>代碼示例>>Java>>正文


Java HttpRequestDecorator類代碼示例

本文整理匯總了Java中org.springframework.social.support.HttpRequestDecorator的典型用法代碼示例。如果您正苦於以下問題:Java HttpRequestDecorator類的具體用法?Java HttpRequestDecorator怎麽用?Java HttpRequestDecorator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


HttpRequestDecorator類屬於org.springframework.social.support包,在下文中一共展示了HttpRequestDecorator類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: intercept

import org.springframework.social.support.HttpRequestDecorator; //導入依賴的package包/類
public ClientHttpResponse intercept(final HttpRequest request, final byte[] body,
									ClientHttpRequestExecution execution) throws
																		  IOException {
	HttpRequest protectedResourceRequest = new HttpRequestDecorator(request) {
		@Override
		public URI getURI() {

			String ts = Long.toString(TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()));
			String hash = DigestUtils.sha1Hex(sharedSecret + ts).toLowerCase();

			UriComponentsBuilder builder = UriComponentsBuilder.fromUri(super.getURI());
			builder.queryParam("api_key", apiKey);
			builder.queryParam("ts", ts);
			builder.queryParam("hash", hash);

			// all params are already encoded at this point
			UriComponents uriComponents = builder.build(true);
			logger.debug("requesting SlideShare API: " + uriComponents.toUriString());

			return uriComponents.toUri();
		}
	};

	return execution.execute(protectedResourceRequest, body);
}
 
開發者ID:ttddyy,項目名稱:spring-social-slideshare,代碼行數:26,代碼來源:SlideShareTemplate.java

示例2: intercept

import org.springframework.social.support.HttpRequestDecorator; //導入依賴的package包/類
@Override
public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException {
	HttpRequestDecorator httpRequest = new HttpRequestDecorator(request);

	if(name != null && value != null) {
		httpRequest.addParameter(name, value);
	}

	return execution.execute(httpRequest, body);
}
 
開發者ID:twitch4j,項目名稱:twitch4j,代碼行數:11,代碼來源:QueryRequestInterceptor.java

示例3: intercept

import org.springframework.social.support.HttpRequestDecorator; //導入依賴的package包/類
public ClientHttpResponse intercept(final HttpRequest request, final byte[] body, final ClientHttpRequestExecution execution) throws IOException {
	HttpRequest protectedResourceRequest = new HttpRequestDecorator(request);
	protectedResourceRequest.getHeaders().set("Host", "apis.naver.com");
	protectedResourceRequest.getHeaders().set("Pragma", "no-cache");
	protectedResourceRequest.getHeaders().set("Accept", "text/xml");
	protectedResourceRequest.getHeaders().set("Authorization", "Bearer " + accessToken);
	return execution.execute(protectedResourceRequest, body);
}
 
開發者ID:mornya,項目名稱:spring-social-naver,代碼行數:9,代碼來源:NaverOAuth2ApiBinding.java


注:本文中的org.springframework.social.support.HttpRequestDecorator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。