Explorar el Código

skip signature related parameters.

master
Patrick Peng Sun hace 9 años
padre
commit
cf15ff25bd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      crmpixel.go

+ 1
- 1
crmpixel.go Ver fichero



//set all cookie from url //set all cookie from url
for k, v := range m { for k, v := range m {
if k == "lid" || k == "url" || k == "expire" { //skip lead id and URL and expire
if k == "lid" || k == "url" || k == "expire" || k == "nonce" || k == "signature" || k == "timestamp" { //skip lead id and URL and expire
continue continue
} }
log.Printf("set cookie %s=%s", k, v) log.Printf("set cookie %s=%s", k, v)

Cargando…
Cancelar
Guardar