当前位置: 首页>>代码示例>>Golang>>正文


Golang Store.Set方法代码示例

本文整理汇总了Golang中github.com/macaron-contrib/session.Store.Set方法的典型用法代码示例。如果您正苦于以下问题:Golang Store.Set方法的具体用法?Golang Store.Set怎么用?Golang Store.Set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/macaron-contrib/session.Store的用法示例。


在下文中一共展示了Store.Set方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: handleOAuth2Callback

func handleOAuth2Callback(f *oauth2.Config, s session.Store, w http.ResponseWriter, r *http.Request) {
	next := extractPath(r.URL.Query().Get("state"))
	code := r.URL.Query().Get("code")
	t, err := f.Exchange(oauth2.NoContext, code)
	if err != nil {
		// Pass the error message, or allow dev to provide its own
		// error handler.
		http.Redirect(w, r, PathError, codeRedirect)
		return
	}
	// Store the credentials in the session.
	val, _ := json.Marshal(t)
	s.Set(keyToken, val)
	http.Redirect(w, r, next, codeRedirect)
}
开发者ID:gorelease,项目名称:oauth2,代码行数:15,代码来源:oauth2.go

示例2: handleOAuth2Callback

func handleOAuth2Callback(ctx *macaron.Context, s session.Store, opt *Options) {
	next := extractPath(ctx.Query("state"))
	code := ctx.Query("code")
	t, err := opt.NewTransportFromCode(code)
	if err != nil {
		// Pass the error message, or allow dev to provide its own
		// error handler.
		println(err.Error())
		ctx.Redirect(PathError)
		return
	}
	// Store the credentials in the session.
	val, _ := json.Marshal(t.Token())
	s.Set(KEY_TOKEN, val)
	ctx.Redirect(next)
}
开发者ID:maxwhale,项目名称:docker-gogs-centos,代码行数:16,代码来源:social.go

示例3: Login

func (u *User) Login(sess session.Store) {
	sess.Set("uid", u.Id)
}
开发者ID:trigrass2,项目名称:tech_oa,代码行数:3,代码来源:user.go

示例4: mySessionHandler

func mySessionHandler(sess session.Store) string {
	sess.Set("session", "session middleware")
	return sess.Get("session").(string)
}
开发者ID:james2doyle,项目名称:macaron-example,代码行数:4,代码来源:main.go


注:本文中的github.com/macaron-contrib/session.Store.Set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。