
单行格式范例:
Invoke-RestMethod -Method Post -Uri "https://ntfy.sh/[你的主题名称]" -ContentType "text/plain; charset=utf-8" -Headers @{ Title = "=?utf-8?B?6L+Z5piv5qCH6aKY?="; Priority = "5"; Tags = "loudspeaker" } -Body "这是正文。"多行格式范例:
$Request = @{
Method = "POST"
URI = "https://ntfy.sh/[你的主题名称]"
ContentType = "text/plain; charset=utf-8"
Headers = @{
Title = "=?utf-8?B?6L+Z5piv5qCH6aKY?="
Priority = "5"
Tags = "loudspeaker"
}
Body = "这是正文。"
}
Invoke-RestMethod @RequestTips:"这是标题"这4个字的UTF-8 Base64编码为6L+Z5piv5qCH6aKY。
相关链接
[1].ntfy官网:https://ntfy.sh/
[2].ntfyg下载:https://github.com/binwiederhier/ntfy-android/releases
评论(0)
暂无评论。