You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an API that I regularly use that requires a login. The login returns session cookies which need to be passed on subsequent requests.
If I have a file with two requests, one to login and one to retrieve some data. I can run both requests (Send All) or run each individually and it all works well. If after sending my login request I edit the .http file the session cookies are cleared.
I would like to be able to tweak my requests in the http file without having to send my login request every time that I do. I don't remember encountering this when I first started to use the VSCode extension some months ago.
The text was updated successfully, but these errors were encountered:
There is a bug in the program. In htttpyac I compare if the same rootPath is used and take the cookies accordingly or use a new n MemoryStore. The rootDir can be either a string (CLI) or a vscode.URI (vscode extension). But you cannot compare vscode.URI using ==. The editing of the file, creates a new vscode.URI reference and this causes the bug.
It seems to me like vscode has changed here, as I've only recently become aware of the bug. I already had this elsewhere
I have an API that I regularly use that requires a login. The login returns session cookies which need to be passed on subsequent requests.
If I have a file with two requests, one to login and one to retrieve some data. I can run both requests (Send All) or run each individually and it all works well. If after sending my login request I edit the .http file the session cookies are cleared.
I would like to be able to tweak my requests in the http file without having to send my login request every time that I do. I don't remember encountering this when I first started to use the VSCode extension some months ago.
The text was updated successfully, but these errors were encountered: