Hi

This redirect seems to work but now due to scope creep I need to pass a
signed request parameter submitted as POST data in the initial request to
the GET method as an argument.  Any advice?

https://developers.facebook.com/docs/facebook-login/using-login-with-games

Regards
Paul




On Tue, Oct 21, 2014 at 11:43 PM, Willy Tarreau <w...@1wt.eu> wrote:

> Hi Paul,
>
> On Tue, Oct 21, 2014 at 03:23:55PM -0700, Paul McIntire wrote:
> > Hi
> >
> > We have a very specific use case where we want to redirect a POST to
> > /facebook-canvas to a GET request for /index.html
> >
> > Is this even possible?  How can I do it?
>
> Yes, you need to redirect using code 303, which the browser will understand
> as "fetch this URI using the GET method".
>
> For example :
>
>     redirect location /index.html code 303 if METH_POST { path
> /facebook-canvas }
>
> Regards,
> Willy
>
>

Reply via email to