I am using Google AppEngine with Java and the built in Task Queue.
Is there a way to determine wether the current call is a task that originated from the task queue?
thanks
|
I am using Google AppEngine with Java and the built in Task Queue. Is there a way to determine wether the current call is a task that originated from the task queue? thanks |
|||
|
|
|
Assuming you are using push queues, you can check if any of the Task Queue headers are set. The headers are:
|
|||
|
|
|
From the GAE docs at https://developers.google.com/appengine/docs/java/taskqueue/overview-push:
Note that if you are really concerned about the origin of the request, you could secure the task URL to prevent the outside world from calling it. |
|||
|
|