在golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天编程网就整理分享《如何在 Go 中创建 Http 会话》,聊
在golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天编程网就整理分享《如何在 Go 中创建 Http 会话》,聊聊,希望可以帮助到正在努力赚钱的你。
问题内容我目前正在使用 fasthttp 发送我的请求,我的问题是,有没有办法建立持久会话?我需要保留 cookie 和数据。
c := fasthttp.client{ 名称: "添加到购物车",}
store, err := session.Start() // ?????
args := fasthttp.AcquireArgs()
defer fasthttp.ReleaseArgs(args)
args.Add("pid", sizepid)
args.Add("options", "[]")
args.Add("quantity", "1")
statusCode, body, err := c.Post(nil, "URL", args)
if err != nil {
panic(err)
}`
根据您的问题,我认为您已经很清楚了,但以防万一: 会话不是在客户端启动的,而是在服务器上启动的。服务器检查特定的cookie是否存在;如果是,则恢复 cookie 标识的会话;如果没有,它会创建一个新会话并将标识符作为 cookie 发送回客户端。客户端所需要做的就是将正确的 cookie 发送到服务器。
所以,你需要读取和写入cookie。 fasthttp.client.post()
接口不允许您这样做。因此,事情变得相当丑陋,而不是那个漂亮的界面。
在执行请求之前,您需要向 fasthttp
询问 request
和 response
对象。完成初始请求后,您需要查看所有 cookie,或读出特定 cookie。您现在可以将这些值用于下一个请求。
我写了一个简短的示例来说明如何执行此操作。
func main() {
c := fasthttp.Client{}
// Create a request
req := fasthttp.AcquireRequest()
defer fasthttp.ReleaseRequest(req)
req.SetRequestURI(`https://www.google.com/`)
// Create a response
resp := fasthttp.AcquireResponse()
defer fasthttp.ReleaseResponse(resp)
// Execute the request, writing to the response object
err := c.Do(req, resp)
if err != nil {
panic(err)
}
// Loop over all cookies; usefull if you want to just send everything back on consecutive requests
resp.Header.VisitAllCookie(func(key, value []byte) {
log.Printf("Cookie %s: %s\n", key, value)
})
// Read a specific cookie
nid := fasthttp.AcquireCookie()
defer fasthttp.ReleaseCookie(nid)
nid.SeTKEy(`NID`)
if resp.Header.Cookie(nid) {
log.Println("Value for NID Cookie: " + string(nid.Value()))
// Create a second request and set the cookie from the first
req2 := fasthttp.AcquireRequest()
defer fasthttp.ReleaseRequest(req2)
req2.SetRequestURI(`https://www.google.com/`)
req2.Header.SetCookie(`NID`, string(nid.Value()))
// Now you can execute this request again using c.Do() - don't forget to acquire a new Response!
}
}
注意:您可以选择跳过 fasthttp.acquirexxx()
和 defer fasthttp.releasexxx(yyy)
步骤 - 但这会抵消使用的大部分(可能是大部分)性能优势标准 net/http
,所以如果你走这条路,也许就一起放弃 fasthttp
。
今天关于《如何在 Go 中创建 HTTP 会话》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注编程网公众号!
--结束END--
本文标题: 如何在 Go 中创建 HTTP 会话
本文链接: https://lsjlt.com/news/596712.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0