cookies Questions
3
Solved
Is there a way to store in a variable a cookie creation date? I'm using the jquery.cookie plugin. If there is not a way, I'm thinking about store in the cookie, as value, the actual time/date. It c...
Serviceberry asked 18/7, 2013 at 11:23
4
I'm trying to delete a cookie using the next/headers module in a Next.js application, but it doesn't seem to work as expected. Here's the code snippet:
import {cookies} from "next/headers"...
Blond asked 19/6, 2023 at 18:25
2
Solved
I am using Laravel 5.8 .
I use Nikto to scan my site, I saw these issues.
Cookie XSRF-TOKEN created without the httponly flag
How do I patch these issues in my Laravel Site ?
I've tried , but it ...
Brigitta asked 2/1, 2020 at 19:27
9
Solved
url = 'https://query2.finance.yahoo.com/v7/finance/quote?symbols=TSLA&fields=regularMarketPreviousClose&region=US&lang=en-US'
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64)...
Briannabrianne asked 20/4, 2023 at 14:7
1
I am working with a database based session driver at the moment, to allow us to store some persistent data across our application,
we create the session like this:
Auth::loginUsingId($user->i...
5
So I have a django-react application where I use django-rest-framework token authentication package. I would fetch the token from an API call and insert it into a hook (useCookies) that would be st...
Viscosity asked 31/7, 2021 at 7:19
1
I'm trying use wget to download a website but it does not keep it session alive after the first Webpage its cloned, the website has a login and uses HTTPS so I wont be able to navigate trough it if...
2
How to store, read and delete cookies and sessions in Nest.js?
Should I use this:
@nestjs/common > session
Or should I use js-cookie?
Bryon asked 2/5, 2019 at 7:56
4
I'm passing my authentication token via an HTTP-Only cookie in my NestJS API.
As such, when writing some E2E tests for my Auth endpoints, I'm having an issue with cookies not being where I expect ...
8
Solved
Using the cookies-next package,
according to their docs, accessing cookies client side is as simple as getCookie('key'); - client side
I have a simple function in my Next JS app,
const handleAddTo...
Constringe asked 24/1, 2023 at 17:39
1
I am running this sample to create multitenant web app that connects using AzureAD with Owin OpenIDConnect middleware. The issued .AspNet.Cookies to authenticate between "my client" and "my server"...
Alluvion asked 13/12, 2015 at 15:22
3
After login from keycloak login page to my website. it display "Cookie not found. Please make sure cookies are enabled in your browser.". check my cookie is enable to the browser.
Expect ...
Elongation asked 25/7, 2023 at 8:50
2
Solved
The Flutter Web application send a HTTP REST API POST request and gets back a JSON response and a cookie in the Set-Cookie header as follows.
(Flutter (Channel beta, 1.22.0, on Microsoft Windows)
...
Fotinas asked 7/10, 2020 at 10:4
5
I'm working on Flutter an app which will use Express based REST api. While implementing Cookie based sessions, I wanted to retrieve cookies from app with basic auth request but somehow I can't retr...
2
Solved
I created DB from google chrome's Cookies file and one of the columns in the cookies table is expires_utc. The format of the column is like - 13169399213145330, which is more like unix time. But wh...
Campaign asked 20/4, 2017 at 11:25
2
Solved
I need to download information from web site that is protected using cookies. I pass this protection manually and then insert cookies to httr.
Here is similar topic, but it does not solve my prob...
4
After setting the cookie, I can not read it in the middleware , I have to reload the page then I can read the cookie.
Why did this happen?
I set cookie like the following:
import { getCookies, setC...
Postfix asked 15/3, 2023 at 23:28
5
in my application, I'm getting two cookies from an HttpGet request and store them in the CookieManager like this:
//Clear old cookies
CookieManager.getInstance().removeAllCookie();
CookieSyncManag...
4
Solved
Set-Cookie was blocked because its Domain attribute was invalid with regards to the current host url
I have a react frontend with domain sambat.io, deployed to Vercel (Zeit) and a Node API deployed to Heroku with this domain https://safe-ridge-68566.herokuapp.com/ and cookie setup like this:
res.c...
Coroner asked 6/7, 2020 at 4:56
13
Solved
Couple of days back, i got this error when i was trying to login
i did find out some solutions such as:
Renaming Plugins folder
Replacing Files which are giving error.
But these are not wor...
1
I am trying to use cookie based auth in addition to the normal clientside firebase auth for my Nextjs application. I have read around the internet and I have come across a few blogs like this one h...
Access asked 23/4, 2023 at 2:22
2
I have a self-hosted WCF service with an endpoint set up with WebHttpBinding listening for HTTP requests. I need to access cookies passed with these requests. I can get the Cookie: header value, bu...
9
Solved
SITUATION:
I am trying to check if my user is authenticated when he makes a request to the server.
I googled a bit and found this:
How to show different page if user is logged in via firebase
...
Loiseloiter asked 18/1, 2017 at 13:31
2
I have the following configurations in Startup.cs:
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
//options.DefaultChallen...
Mariejeanne asked 10/6, 2019 at 5:53
4
In getServerSideProps I need to set multiple cookies on client device. I coded:
Kannry asked 20/2, 2021 at 1:59
1 Next >
© 2022 - 2025 — McMap. All rights reserved.