Thread Previous • Date Previous • Date Next • Thread Next |
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
Thread Previous • Date Previous • Date Next • Thread Next |