我有一个位置列表,我想知道是否可以从Google Maps API获取天气数据.
我刚开始使用Google Cloud Functions完成整个无服务器的事情,所有的例子基本上都是"Helloworld".
package function
import (
"net/http"
)
func F(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!\n"))
}
Run Code Online (Sandbox Code Playgroud)
生产就绪功能是什么样的?
go google-cloud-platform google-cloud-functions faas serverless