I though POST params 'should' be used as part of the base signature:
According to 9.1.1 of the oauth, spec:
9.1.1. Normalize Request Parameters
The request parameters are collected, sorted and concatenated into a
normalized string:
* Parameters in the OAuth HTTP Authorization header (Authorization
Header) excluding the realm parameter.
* Parameters in the HTTP POST request body (with a content-type of
application/x-www-form-urlencoded).
* HTTP GET parameters added to the URLs in the query part (as
defined by [RFC3986] (Berners-Lee, T., "Uniform Resource Identifiers
(URI): Generic Syntax," .) section 3).
Eugene Park
Flixster, Inc.
www.flixster.com
On Mar 3, 2:45 pm, "ibrahim okuyucu" <
ibra...@rockyou.com> wrote:
> not familiar with that but note that;
> - Even if you do a POST, OAuth parameters are still passed as URL query
> string. So look for GET params for the OAuth stuff and POST params for your
> app's params.
> - POST params arent used in the generated signature.
>
> On 3/3/08, Alex Epshteyn <
alexander.epsht...@gmail.com> wrote:
>
>
>
>
>
> > If you're familiar with the Java Servlet API -
> > request.getParameterMap() returns an empty map for me. Normally this
> > map contains the all the GET and POST parameters.
>
> > Alex
>
> > On 3/3/08, ibrahim okuyucu <
ibra...@rockyou.com> wrote:
> > > Alex,
> > > How does your server side code look like?
> > > POST and GET both works for me.
>