golang常用的http请求操作

golang发起GET请求 基本的GET请求 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 package main import ( "fmt" "io/ioutil" "net/http" ) func main() { resp, err := http.Get("http://httpbin.org/get") if err != nil { fmt.Println(err) return } defer resp.Body.Close() body, err

随机密码生成 by Golang

Talk is too slow Show me the code 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 package main import ( "crypto/md5" "encoding/hex" "fmt" "math/rand" "time" ) // 生

frp内网穿透

https://github.com/fatedier/frp/edit/master/README_zh.md frp README | 中文文档 frp 是一个可用于内网穿透的高性能的反向代理应用,支持 tcp, udp 协议,为 http 和 https 应用协议提供了额外的能力,且尝试性支持了点对点穿透。 目录

webcam 摄像头调用 golang版本

https://github.com/lflxp/webcam-right/blob/master/examples/http_mjpeg_streamer/webcam.go 介绍 用golang实现本地usb摄像头调用并通过http进行流数据访问 代码 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