http.Handlefunc("/one", testGet)
http.HandleFunc("/two", testPost)
http.ListenAndServeTLS(port, nil, cert.pem, key.pem)
}
func testGet(w http.ResponseWriter, r *http.Request){
if r.URL.Query().Get("token") == TOKEN {
// process request
}
}
func testGet(w http.ResponseWriter, r *http.Request){
if r.URL.Query().Get("token") == TOKEN {
if r.Method == http.MethodPost{
// process request
}
}
}
Exactly
Обсуждают сегодня