tokenService.replaceHeader("Authorization", header);
Form form = tokenService.post(null, Form.class);
return new Token(form.getData().getFirst("oauth_token"),
form.getData().getFirst("oauth_token_secret"));
} catch (ServerWebApplicationException ex) {
throw new OAuthServiceException(ex);
}
}