开发者

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

开发者 https://www.devze.com 2022-12-28 21:09 出处:网络
I would like to run cron job on GAE and using python In the cron.yaml, how do i insert the \"url\" field if consist of some \"get\" info

I would like to run cron job on GAE and using python

In the cron.yaml, how do i insert the "url" field if consist of some "get" info

The:

  • description: whatever

    url: url?keyword=a

    schedule: every day 15:00

give me error when开发者_开发知识库 deploy


I have tried the following cron.yaml and it worked fine. At least on the dev_appserver:

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

精彩评论

暂无评论...
验证码 换一张
取 消