mirror of
https://github.com/Finb/bark-server.git
synced 2026-04-27 06:35:49 +03:00
[GH-ISSUE #24] bug #18
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#18
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 @secwang on GitHub (Nov 20, 2020).
Original GitHub issue: https://github.com/Finb/bark-server/issues/24
当 content中带%号的时候,会出现400 Bad Request⏎
@secwang commented on GitHub (Nov 20, 2020):
GET 请求中,当出现 % , foramt成 %% 时,server不能处理
@Finb commented on GitHub (Nov 21, 2020):
请求时如果URL中有特殊字符,为了防止特殊字符破坏URL结构,需要对内容URL编码一下
@secwang commented on GitHub (Nov 21, 2020):
https://api.day.app/token/title/10%
@secwang commented on GitHub (Nov 21, 2020):
按%编码成%25 之后应该是没问题的,有些encoding会format成%%的格式,这时候也会出问题。