Google App Engine (GAE) cron url: url? Keyword = abc

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

+2


a source to share


1 answer


I tried the following cron.yaml

and it worked fine. At least on dev_appserver:



cron:
- description: url test
  url: /tasks?keyword=test
  schedule: every day 15:00

      

+1


a source







All Articles