DO I need to specify POST and the URL as a parameter. I’ve tried multiple methods and I am getting an incorrect signature.
e.g
parameters.put("HTTP Method", "POST").
parameters.put("URL", "Example.com").
or it is automatically populated with :
HttpRequestAdapter _request_ = new HttpRequestAdapter(new HttpPost("Example.com"));
HttpParameters _requestparameters = new HttpParameters();
OAuthMessageSigner _signer = new HmacSha1MessageSigner();
Its is automatically populate by :
My signature was incorrect because I did not set consumer secret and token secret correctly.