mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #1399] CORS header missing #455
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#455
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 @MatanAmoyal on GitHub (Dec 23, 2020).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/1399
Hello,
I installed the latest docker version of hoppscotch (release on 22.12.20) and i installed it in my laptop and in k8s.
The UI is working, and the request example (https://httpbin.org/get) is working..
but when i'm trying to do another request to my app, it failed on CORS header missing..
i tried to add Access-Control-Allow-Origin: * to header without success.
Also tried to installed the extension to browser - firefox and chrome... but same...
Maybe do you have any advise about it?
@liyasthomas commented on GitHub (Dec 23, 2020):
Access-Control-Allow-Originis a response header, not a request header. You should enable it from your apps side (server side).Stack Overflow reference
Under normal circumstances
CORSissues can be fixed by either browser extension or turning on theProxy modefrom Settings.Let me know if you still have issues with
CORS.