Notify with command

通知オプション(最小)

{"Content":"内容"}

※APIkey, UDP_localPort 初期値の場合

通知:自分のPC

{ "APIkey": "MeowNotify", "Content": "内容", "Title": "通知 タイトル", "Type": "TEXT", "nSecondsToClose": 0}
※JSONキーの大文字小文字厳守
  • APIkey:データを受け取った場合、APIkeyが一致する時のみ、通知を表示

  • Content:通知メッセージの内容

  • Title:通知メッセージのタイトル

  • Type:TEXT または、HTML (ProgressBar)

  • nSecondsToClose:通知が閉じるまでの秒数
    ※ 0 の場合、自動で閉じない

"MeowNotify.exe" "{\"APIkey\":\"MeowNotify\",\"Content\":\"内容\",\"Title\":\"通知 タイトル\",\"Type\":\"TEXT\",\"nSecondsToClose\":0}"

通知:別のPC

{ "Receiver": { "IP": "127.0.0.1", "Port": 50210 }, "Request": { "APIkey": "MeowNotify", "Content": "内容", "Title": "通知 タイトル", "Type": "TEXT", "nSecondsToClose": 0 }}※JSONキーの大文字小文字厳守
Receiver
  • IP:送信先IPアドレス
  • Port:送信先UDPポート(初期値:50210)

Request

  • APIkey:データを受け取った場合、APIkeyが一致する時のみ、通知を表示

  • Content:通知メッセージの内容

  • Title:通知メッセージのタイトル

  • Type:TEXT または、HTML (ProgressBar)

  • nSecondsToClose:通知が閉じるまでの秒数
    ※ 0 の場合、自動で閉じない

"MeowNotify.exe" "{\"Receiver\":{\"IP\":\"127.0.0.1\",\"Port\":50210},\"Request\":{\"APIkey\":\"MeowNotify\",\"Content\":\"内容\",\"Title\":\"通知 タイトル\",\"Type\":\"TEXT\",\"nSecondsToClose\":0}}"