in src/main/java/com/twitter/joauth/UnpackedRequest.java [376:395]
public OAuth1Request buildOAuth1Request(
Request.ParsedRequest parsedRequest,
OAuthParams.OAuth1Params oAuth1Params,
Normalizer normalize
) throws MalformedRequest, UnsupportedEncodingException {
verify(parsedRequest, oAuth1Params);
return new OAuth1Request(
UrlCodec.decode(oAuth1Params.token()), // should never be called when token is None
UrlCodec.decode(oAuth1Params.consumerKey()),
UrlCodec.decode(oAuth1Params.nonce()),
oAuth1Params.timestampSecs(),
oAuth1Params.signature(),
oAuth1Params.signatureMethod(),
oAuth1Params.version(),
parsedRequest,
normalize.normalize(parsedRequest, oAuth1Params)
);
}