2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-22 18:37:10 +00:00

Merge pull request #109 from yoannduc/patch-1

Update smack_my_bitch_up.go
This commit is contained in:
Nihad Abbasov 2015-12-08 18:17:40 +04:00
commit cf679b525f

View File

@ -31,7 +31,7 @@ func main(){
response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output()
if(err != nil){
fmt.Printf("Failed to send SMS: ",err)
fmt.Printf("Failed to send SMS: %s",err)
return
}