← Back to team overview

launchpad-dev team mailing list archive

Re: Launchpad Web API - Authentication and Current State

 

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


References