Hi John. We want to set up our app engine to only allow access from specific public > domain like www.whatever.com ( it is an external public available > website), how can I do that which is not by IP range level so I can't do it > using the app engine firewall setting. > > Our app is written in Python and the app engine services are in both > standard / flex environment. > > The flow will be like someone clicking a link on the www.whatever.com and > it will redirect to our app front end to show a page, but we would like to > make sure the request is come from www.whatever.com otherwise, should > give them like 500 server error or something. > > > Any ideas how can I do that? >
For example, you can create a set of unique one-time links to your-app.appspot.com for each page view on www.whatever.com The request to create this set must go through a private communication channel between www.whatever.com and your-app.appspot.com In general, this task is not directly related to appengine. More likely something like https://www.google.com/search?q=how+to+implement+weblink+shortener WBR, Vitaly -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/23b844f9-2c4b-4b11-855e-8d74eef56fd2%40googlegroups.com.
