Posts by Samuel Palmeira • 15 points
2 posts
-
0
votes1
answer108
viewsQ: using twitter api with golang
I am trying to make this request "oauth/request_token" on twitter using go. // GET PARAMS TO REQUEST t := time.Now().Format("20060102150405") values := make(url.Values) values.Add("oauth_nonce",…
-
1
votes1
answer65
viewsQ: Using Fileserver to share files
I am learning Golang and to practice I am doing some small "projects", my idea is just to share a folder of my Windows or some file through my local wifi network using the net/http package of…