我正在尝试使用参数在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.
谢谢!