我試圖用Golang的net/http設置cookie。我有在Golang中設置Cookie(net/http)
package main
import "io"
import "net/http"
import "time"
func indexHandler(w http.ResponseWriter, req *http.Request) {
expire := time.Now().AddDate(0, 0, 1)
cookie := http.Cookie{"test", "tcookie", "/", "www.domain.com", expire, expire.Format(time.UnixDate), 86400, true, true, "test=tcookie", []string{"test=tcookie"}}
req.AddCookie(&cookie)
io.WriteString(w, "Hello world!")
}
func main() {
http.HandleFunc("/", indexHandler)
http.ListenAndServe(":80", nil)
}
我試着用'cookies'搜索googling'Golang',但沒有得到任何好結果。如果任何人都可以指出我正確的方向,將不勝感激。
謝謝。
謝謝。這似乎工作。我錯誤地看着http://golang.org/pkg/net/http/#Request.AddCookie早些時候 – Tech163
是的,它很混亂。如果您的go程序充當HTTP客戶端並且您想要將cookie值發送到HTTP服務器,那麼您需要Request.AddCookie ... –