On Jan 13, 2012, at 7:22 AM, Web2Py Freak wrote:

> ok i did request_uri and got None ?? i want the full url with tha
> domain and args because i want to use it for the facebook like

It's possible that you need to enable routing to set request_uri (I'm not 
sure). This is how the router builds it; you could try it yourself:

    request_uri = request.env.path_info + (request.env.query_string and ('?' + 
request.env.query_string) or '')

Reply via email to