Skip to content

Instantly share code, notes, and snippets.

@typpo
Created February 1, 2020 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save typpo/50a17ee86f8325c628beb19fe7d60122 to your computer and use it in GitHub Desktop.
Save typpo/50a17ee86f8325c628beb19fe7d60122 to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
"net/url"
)
func main() {
values := url.Values{
"phone": {"5555555"},
"message": {"alert, the milk boils 🔥🔥🔥"},
"key": {"textbelt"},
}
http.PostForm("https://textbelt.com/text", values)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment