Created
February 1, 2020 16:36
-
-
Save typpo/50a17ee86f8325c628beb19fe7d60122 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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