06-19-2018, 01:16 PM
I was able to get the groupme push working. I was not able to use the Host.PostAdd commands instead I had to use this:
typelib WinHttp {662901FC-6951-4854-9EB2-D9A2570F2B2E} 5.1
WinHttp.WinHttpRequest r._create
r.Open("POST" "https://push.groupme.com/faye")
r.SetRequestHeader("Content-Type" "application/json")
str data=
F
{{
"channel":"/meta/handshake",
"version":"1.0",
"supportedConnectionTypes":["long-polling"],
"id":"1"
}
r.Send(data)
Not sure why this works but the Host.PostAdd commands did not.
typelib WinHttp {662901FC-6951-4854-9EB2-D9A2570F2B2E} 5.1
WinHttp.WinHttpRequest r._create
r.Open("POST" "https://push.groupme.com/faye")
r.SetRequestHeader("Content-Type" "application/json")
str data=
F
{{
"channel":"/meta/handshake",
"version":"1.0",
"supportedConnectionTypes":["long-polling"],
"id":"1"
}
r.Send(data)
Not sure why this works but the Host.PostAdd commands did not.