| 12345678910111213141516171819202122 |
- wifi.sleeptype(wifi.NONE_SLEEP)
- if YO_RECIPIENT ~= nil and YO_RECIPIENT ~= '' then
- debugMsg('sending yo to ' .. YO_RECIPIENT)
- local contentString = "api_token=" .. API_KEY .. "&username="..string.upper(YO_RECIPIENT)
- local contentLength = string.len(contentString)
- http.post(
- 'https://api.justyo.co/yo/',
- 'Content-Type: application/x-www-form-urlencoded\r\n'..
- 'Content-length: ' .. contentLength .. '\r\n',
- contentString,
- function(code, data)
- debugMsg("POST REQUEST CALLBACK")
- debugMsg("code: " .. code)
- debugMsg("data: " .. data)
- wifi.sleeptype(wifi.LIGHT_SLEEP)
- end
- )
- else
- debugMsg("Yo not sent - invalid YO_RECIPIENT")
- end
|