네트워커의 보안 티스토리

푸시불렛 예제.ahk




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