I'm no Java programmer but I guess the problem is the oauth_signature.
You're setting it to "%26" and then I see it's passed to
UrlEncodedFormEntity, which seems likely to preform URL encoding on
the parameters.
Try replacing the line with:
nvps.add(new BasicNameValuePair("oauth_signature", "&"));

--
Terence Simpson

_______________________________________________
Mailing list: https://launchpad.net/~launchpad-dev
Post to     : launchpad-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-dev
More help   : https://help.launchpad.net/ListHelp

Reply via email to