在有关Apps脚本/ 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.comCRITICAL 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-tutorialversion: 1runtime: goapi_version: go1handlers:- url: /* script: _go_app也可以,- url: /rpc并且不起作用。由于代码是Python,是否有可能在App Engine中将App脚本和Go链接起来?
2 回答
幕布斯7119047
TA贡献1794条经验 获得超8个赞
该示例演示了将Google Apps脚本前端与以Python编写的Google App Engine(GAE)后端一起使用。GAE当前运行以Java,Python,Go和PHP编写的应用程序。
那个特定的Python后端接受并生成JSON格式的消息。因此,要是否通过GAE类似地链接Apps Script和Go,您可能需要使用net / http库和encoding / json库来复制Python后端的功能。
有关将这些库一起使用的示例,请查看this,this和this。
有关将Go与GAE一起使用的示例,请查看this和this。
- 2 回答
- 0 关注
- 236 浏览
添加回答
举报
0/150
提交
取消