如何在Google App Engine中传递关于cron的参数?

mis*_*rdh 2 php google-app-engine

我正在尝试使用参数在Google App Engine中运行cron作业,但无法在cron.yaml中发送任何参数.任何人都知道如何在cron.yaml中发送参数?

handlers:
- url: /testing
  script: testing.php
Run Code Online (Sandbox Code Playgroud)

我想发送的是testing.php?testing = 12345,但是如果我这样写的话,脚本将不会运行.

我看了这个:

如何在Google App Engine上将参数传递给python cron任务?

..但我不太理解它,因为它适用于Python.

谢谢!

小智 5

cron: - description: Testing Cron url: /testing.php?testing=12345 schedule: every 60 mins

根据谷歌(https://developers.google.com/appengine/docs/php/config/cron)上面应该是正确的语法,注意使用cron而不是处理程序.

我想知道你为什么使用查询字符串参数?如果这是为了限制访问,您可以通过仅添加管理员登录来轻松完成此操作:

cron: - description: Testing Cron url: /testing.php?testing=12345 schedule: every 60 mins login: admin

或者,如果您确信在您的网址末尾添加查询字符串不起作用,您可以随时使用不同的网址来执行不同的任务...