在 Apps Script/Appengine 的教程中:
https://developers.google.com/apps-script/articles/appengine
尝试运行google_appengine/dev_appserver.py google-apps-script/
时响应是:
WARNING 2012-09-06 14:56:33,570 rdbms_mysqldb.py:74] The rdbms API is not available because the MySQLdb library could not be loaded.
INFO 2012-09-06 14:56:33,840 appengine_rpc.py:163] Server: appengine.google.com
CRITICAL 2012-09-06 14:56:33,842 appcfg.py:561] The api_version specified in app.yaml (1) is not supported by this release of the SDK. The supported api_versions are ['3', 'go1'].
我尝试了以下 app.yaml,但它不起作用。
application: google-apps-script-tutorial
version: 1
runtime: go
api_version: go1
handlers:
- url: /*
script: _go_app
也与- url: /rpc
它不工作。由于代码是 Python,是否可以在应用引擎中获取 App 脚本和 Go 链接?