gpt4 book ai didi

google-app-engine - 转到 : How to Set same Cookie on all pages?

转载 作者:数据小太阳 更新时间:2023-10-29 03:17:52 27 4
gpt4 key购买 nike

登录后,我的 url 更改为/login/并设置了 cookie。设置cookie后需要重定向首页(url :/homePage/)除/login/以外的页面。

如何在所有页面设置相同的cookie?

最佳答案

您可以使用内置的 CookieJar用于管理 cookie 存储的库(参见 this 的一些指示),但使用类似 Gorilla Sessions 的东西可能更容易来自 Gorilla Web Toolkit .

还有一些特定于 GAE 的设置(来自 http://www.gorillatoolkit.org/ ):

For Google App Engine, create a directory tree inside your app and clone the repository there:

$ cd myapp
$ mkdir -p github.com/gorilla
$ cd github.com/gorilla
$ git clone git://github.com/gorilla/mux.git

该示例的最后一行特定于 mux包裹。您可以将其替换为:

git clone git://github.com/gorilla/sessions.git

一个简单的例子:

定义您的 cookie 存储:

import (
"github.com/gorilla/sessions"
"net/http"
)

// Authorization Key
var authKey = []byte{
0x70, 0x23, 0xbd, 0xcb, 0x3a, 0xfd, 0x73, 0x48,
0x46, 0x1c, 0x06, 0xcd, 0x81, 0xfd, 0x38, 0xeb,
0xfd, 0xa8, 0xfb, 0xba, 0x90, 0x4f, 0x8e, 0x3e,
0xa9, 0xb5, 0x43, 0xf6, 0x54, 0x5d, 0xa1, 0xf2,
}

// Encryption Key
var encKey = []byte{
0x31, 0x98, 0x3E, 0x1B, 0x00, 0x67, 0x62, 0x86,
0xB1, 0x7B, 0x60, 0x01, 0xAA, 0xA8, 0x76, 0x44,
0x00, 0xEB, 0x56, 0x04, 0x26, 0x9B, 0x5A, 0x57,
0x29, 0x72, 0xA1, 0x62, 0x5B, 0x8C, 0xE9, 0xA1,
}

var store = sessions.NewCookieStore(authKey, encKey)

func initSession(r *http.Request) *sessions.Session {
session, _ := store.Get(r, "my_cookie")
if session.IsNew {
session.Options.Domain = "example.org"
session.Options.MaxAge = 0
session.Options.HttpOnly = false
session.Options.Secure = true
}
return session
}

然后,在您的页面处理程序中,您只需加载 cookie,设置您喜欢的任何选项并重新保存它:

func ViewPageHandler(w http.ResponseWriter, r *http.Request) {
session := initSession(r)
session.Values["page"] = "view"
session.Save(r, w)
....

希望对您有所帮助。

关于google-app-engine - 转到 : How to Set same Cookie on all pages?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17228655/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com