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 であるため、アプリ スクリプトと Go をアプリ エンジンでリンクすることは可能ですか?