mirror of
https://github.com/Finb/bark-server.git
synced 2026-04-26 22:25:53 +03:00
[GH-ISSUE #21] 请问下自己搭建的网址推送不了。是什么原因呢? #16
Labels
No labels
enhancement
in progress
need test
pull-request
v2
v2
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/bark-server#16
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @asdfvv on GitHub (Oct 17, 2020).
Original GitHub issue: https://github.com/Finb/bark-server/issues/21
请问下大佬,自己搭建的文字可以推,网址就不能推。
带“/”符号的推送什么自己换行,如home/test,会变成一行home,一行test。只能复制到test
听说要转换字符吗?请问下怎么设置?
谢谢
@Finb commented on GitHub (Oct 17, 2020):
需要给参数URL编码,否则如果参数中包含 / 会破坏URL结构
例如
@asdfvv commented on GitHub (Oct 18, 2020):
谢谢大佬解答,不过我是小白一个。
是不是要在哪加个参数?我用docker搭建的
@Finb commented on GitHub (Oct 19, 2020):
服务端是正常的,是因为你拼的请求URL本身有问题,你可以去查一些 URL编码 相关的文章看一看
或者
你不用把参数拼在URL路径里,用下面的格式去发推送
https://api.day.app/yourkey/?body={你要推送的内容}
@asdfvv commented on GitHub (Oct 19, 2020):
好的,谢谢大佬。我在去试试