mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #5852] [feature]: Automatic Cookie Management with Local Storage Persistence #2296
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#2296
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 @yoga-ford on GitHub (Feb 9, 2026).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/5852
Is there an existing issue for this?
Summary
Implements automatic cookie management for Hoppscotch desktop app, enabling seamless handling of HTTP cookies across requests with persistent storage. Cookies received from API responses are automatically captured, stored in local storage, and reused in subsequent requests to matching domains, eliminating the need for manual cookie management.
Why should this be worked on?
Currently, users need to manually copy cookies from response headers and add them to subsequent requests when testing APIs that require session management. This creates friction in testing multi-step authentication flows and session-based APIs.
@yoga-ford commented on GitHub (Feb 11, 2026):
Can you provide the issue ID which is similar to the issue I have created? So, that it helps me to followup with the issue.
@yoga-ford commented on GitHub (Feb 11, 2026):
#1383 only addresses manual cookie management
My feature request is for automatic cookie extraction from responses and persistence to local storage
This is different from existing functionality and addresses a real user pain point.