if something EXTERNAL is calling your function with a POST, you definitely can't resolve the "issue" of seeing what's coming in with a view just pointing your browser to it. You need to to "simulate" the POST request exactly as it comes (maybe looking at their docs) and then you can log either request.post_vars or request.body somewhere to inspect it further.
On Tuesday, May 20, 2014 8:51:35 PM UTC+2, Cory wrote: > > Hi, > I am using rightSignature API which allows websites to do embedded pdf > signing. I am having trouble figuring out how to receive POST requests from > RighSignature. RightSignature sends POST requests to a url (which I > specify) every time the status of a document changes. > > My question is... how do I receive POST requests from an outside source? > Right now I have created a blank view so I can use its url for the post > request. > > I have looked into > > request.post_vars > and > request.body.read() > > I have made no progress with either. > > thanks > > > > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

