[오토핫키] 푸쉬불렛 Winhttp api 스크립트
global PB_Token := "토큰값" ;"" 사이에 사용할 토큰값 입력
F1::
Formattime ,Currenttime,,yyyy년 MM월 dd일 HH시 mm분 ss초
PB_PushNote("제목",Currenttime ) ;;현재시간 보냄
return
F2::
ExitApp
return
PB_PushNote(PB_Title, PB_Message)
{
WinHTTP := ComObjCreate("WinHTTP.WinHttpRequest.5.1")
WinHTTP.SetProxy(0)
WinHTTP.Open("POST", "https://api.pushbullet.com/v2/pushes", 0)
WinHTTP.SetCredentials(PB_Token, "", 0)
WinHTTP.SetRequestHeader("Content-Type", "application/json")
PB_Body := "{""type"": ""note"", ""title"": """ PB_Title """, ""body"": """ PB_Message """}"
WinHTTP.Send(PB_Body)
Result := WinHTTP.ResponseText
Status := WinHTTP.Status
return Status
}
; 토큰값 따는법 : https://nevercmecry.tistory.com/103
'오토핫키' 카테고리의 다른 글
오토핫키 학습에 유용한 티스토리들 (0) | 2017.12.04 |
---|---|
easy님 (0) | 2017.11.02 |
뿔레전쟁 (0) | 2017.10.19 |
오토핫키로 IP, 서브넷마스크, 게이트웨이, DNS 변경하고, 배치파일로 만들기 (3) | 2017.10.16 |
오토핫키로 엑셀에서 내용 찾고 색 채우기 (0) | 2017.09.29 |