Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi My problem is I want to make a redirect and "hide" the actual address so I want to enable and show this address:

/saopaulo

The actual address the response has is

/li?lat=-23.33&lon=-46.38

but I don't want the user the view that address, only the view and display in the address bar /saopaulo and similar for other and more cities. How can I do this with app engine?

Thank you

share|improve this question

1 Answer

up vote 2 down vote accepted

This doesn't actually require redirections.

In your code, when you get a request for /saopaulo simply call the code which you would call if you got the request for /li?lat=-23.33&lon=-46.38. You could store these city name -> lat&lon mappings in your code as a dictionary, or make a model for them.

share|improve this answer
Thank you Bemmu. I'll follow this advice doing a self.redirect but then the address bar address changes. I suppose I just do a call and not a redirect. – Nick Rosencrantz Apr 17 '11 at 11:32
@Web Or better, make your handler capable of doing the name resolution itself. There's no need to have another handler that you only ever call via the named URLs. – Nick Johnson Apr 18 '11 at 2:50
@Nick thanks for the comment. I'm still thinking about how to do it since I'm no app engine guru yet. – Nick Rosencrantz Apr 18 '11 at 6:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.