I would like to run a cron job in GAE and use python
In cron.yaml, how do I insert the "url" field if it consists of some "get" information
:
description: whatever
url: url? keyword = a
schedule: every day 15:00
tell me the error when deploying
I tried the following cron.yaml and it worked fine. At least on dev_appserver:
cron.yaml
cron: - description: url test url: /tasks?keyword=test schedule: every day 15:00