mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #229] Unsupported URLs [BUG]? #83
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#83
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 @seyuf on GitHub (Oct 29, 2019).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/229
The send button is deactivated when url is:
https:user:password-@api.domain.fr
when password is ending with special character (i.e " - "), the url is considered invalid, one can't make a request.
Everything is working fine when entering:
https:user:password@api.domain.fr
or
https:user:password-pwd@api.domain.fr
Error when - at the end of password

The send button should be active e.g

@liyasthomas commented on GitHub (Oct 30, 2019):
I couldn't reproduce the bug. By the way, I don't think the
URLyou mentioned seems to a valid url at all.@reefqi037 commented on GitHub (Oct 30, 2019):
I think @seyuf meant to send username and password together with the URL in this form:
http://username:password@example.comIf there's
-at the end of thepassword, for examplehttp://username:password-@example.com, Postwoman will consider the URL invalid, thus disabling thesendbutton.You can achieve the same thing by using
Basic Type Authenticationfunction. Typein username and password in the field and just use
http://example.comin the URL instead.@seyuf commented on GitHub (Oct 30, 2019):
Hi @liyasthomas , what @reefqi037 said, let me know if you need more info?
Hi @reefqi037, thanks for the workaround.
I still think this is an issue though, feel free to close this if you think otherwise.
Great project by the way, many thanks 👍