-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy path08-cookie.go
82 lines (68 loc) · 1.51 KB
/
08-cookie.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"github.com/guonaihong/gout"
"net/http"
"time"
)
// 使用SetCookies接口设置两个cookie
func twoCookieExample() {
// 发送两个cookie
fmt.Printf("\n\n===1. Send two cookies=========\n")
err := gout.GET(":8080/cookie").
Debug(true).
SetCookies(
&http.Cookie{
Name: "test1",
Value: "test1"},
&http.Cookie{
Name: "test2",
Value: "test2"}).
Do()
if err != nil {
fmt.Println(err)
return
}
}
// 使用SetCookies接口设置一个cookie
func oneCookieExample() {
// 发送一个cookie
fmt.Printf("\n\n===1. Send a cookies=========\n")
err := gout.GET(":8080/cookie/one").
Debug(true).
SetCookies(&http.Cookie{Name: "test3", Value: "test3"}).
Do()
fmt.Println(err)
}
func main() {
go server() // 起测试服务
time.Sleep(time.Millisecond * 500) //sleep下等服务端真正起好
twoCookieExample()
oneCookieExample()
}
func server() {
router := gin.Default()
router.GET("/cookie", func(c *gin.Context) {
cookie1, err := c.Request.Cookie("test1")
if err != nil {
fmt.Printf("%s\n", err)
return
}
cookie2, err := c.Request.Cookie("test2")
if err != nil {
fmt.Printf("%s\n", err)
return
}
fmt.Printf("cookie1 = %v, cookie2 = %v\n", cookie1, cookie2)
})
router.GET("/cookie/one", func(c *gin.Context) {
cookie3, err := c.Request.Cookie("test3")
if err != nil {
fmt.Printf("%s\n", err)
return
}
fmt.Printf("cookie3 = %v\n", cookie3)
})
router.Run()
}