return message.getAuthorizationHeader(resource);
}
public void request() throws Exception {
OAuthAccessor accessor = createOAuthAccessor();
HttpClient4 httpClient = new HttpClient4(new SingleClient());
OAuthClient client = new OAuthClient(httpClient);
client.getRequestToken(accessor);
props.setProperty("requestToken", accessor.requestToken);
props.setProperty("tokenSecret", accessor.tokenSecret);
updateProperties("Last action: added requestToken");