Session validation?

I am trying to fix a login system. There seems to be both cookies (local) and sessions (server).

package main

import (
	"fmt"
	"github.com/gorilla/mux"
	"github.com/gorilla/securecookie"
	"net/http"
)

Or do I need gorilla/sessions as well?

Once the session is established, do I have to validate the session each time I load each and every page?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.