Skip to content

Instantly share code, notes, and snippets.

@zafer06
Created November 12, 2019 13:45
Show Gist options
  • Save zafer06/213440fdb73a16331e8a7bc00b8bdd30 to your computer and use it in GitHub Desktop.
Save zafer06/213440fdb73a16331e8a7bc00b8bdd30 to your computer and use it in GitHub Desktop.
Go ile post istegi yapmak...
package main
import (
"strings"
"net/http"
)
func main() {
body := strings.NewReader("{ \"message\": \"ok\" }")
http.Post("http://requestbin.fullcontact.com/1hp80td1", "application/json", body)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment