Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
25 views

Environment: - ORDS 25.2 deployed on Tomcat 9.0 - Java 17 - Database and APEX on separate servers (PaaS) - Reverse proxy: Nginx Problem: After upgrading to ORDS 25.2.1, the APEX layout breaks. Some ...
Flavia Cabral's user avatar
0 votes
0 answers
24 views

I deployed apis to api.xyz.com and frontend is on ui.xyz.com. When I set and send back jwt in cookie from serverx it only sets to be used with ui.xyz.com. Since, apis are on diff subdomain how do I ...
navinrangar's user avatar
  • 1,494
0 votes
0 answers
42 views

public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http .csrf(csrf -> csrf.disable()) .cors(cors -> cors.configurationSource(corsConfig....
Tejasvi Singh's user avatar
0 votes
0 answers
57 views

Hy, i stuck in an JWT-Refresh issue. The Ktor-Server Code is the following: ... call.response.cookies.append( Cookie( name = "refresh_token", value = ...
LeaveX007's user avatar
0 votes
0 answers
90 views

I have a web application running on kubernetes cluster. There are some cookies on the frontend part and I want to add this cookies in the request header. I'm using axios for sending request. I added ...
Jantoma21's user avatar
  • 495
1 vote
0 answers
39 views

My friend and I are working on a project together. I develop the backend with FastAPI and he uses Next.js for the frontend. I implemented session based authorization with session cookies that would be ...
Adedara's user avatar
  • 11
0 votes
1 answer
63 views

I have frontend running at https://fe-qa.mydomain.com and backend at https://qa.mydomain.com. In the Chrome Dev Tools under Network, I can see that when frontend calls https://qa.mydomain.com/foo/bar2,...
jjrz's user avatar
  • 379
2 votes
1 answer
230 views

I'm trying to set up CSRF on our project, using https://www.npmjs.com/package/csrf https://www.npmjs.com/package/fastify-cookie in NestJS The API generates cookie in response to AJAX request and in ...
Romko's user avatar
  • 1,797
0 votes
0 answers
25 views

I am using nodejs for backend, the backend is hosted on renderon and the frontend is hosted on netlify. I am trying to set the cookie in this way res.cookie("spare_auth_token", token, { ...
Mohamed A.Ismaiel's user avatar
0 votes
0 answers
90 views

I have a html page, to which I would like to insert a .html template which is stored in a separate file. I have done it like this: index.html: <html> <body> <script src="js/...
fascynacja's user avatar
  • 3,186
1 vote
0 answers
37 views

Consider the following codes I collect from the libs/login.php file of Kahuk CMS: function SetIDCookie($what, $remember) { global $db; $domain = preg_replace('/^www/','',$_SERVER['...
Shah Alom's user avatar
  • 1,055
-1 votes
1 answer
405 views

I am trying to access the cookies of websites, take Wikipedia for example and change their values. I also want to create cookies of my own and put them into my website. For some reason, which I'm not ...
Thegreen's user avatar
0 votes
1 answer
92 views

I have an express code that sends the cookie to get requests in some route: res.cookie("userID", `${userSaved._id}`, { maxAge: 900000, httpOnly: true }); So when I make a get request in ...
NITIN RAI's user avatar
0 votes
1 answer
69 views

I'm running my project on different servers, backend on render and frontend on vercel. However I'm only running into this error on deployment, meaning that the cookie is either not being set properly ...
TeDi's user avatar
  • 47
1 vote
1 answer
2k views

I'm implementing authentication in a Node.js application by setting JWT tokens in cookies. Although the API request returns a status code of 200, the cookies are not being stored in the browser. ...
Abdur Rehman Khalid's user avatar
3 votes
1 answer
1k views

I am using two Google Cloud Run containers to host different applications. I changed the URLs in the question for privacy reasons (the structure stays the same obviously). A Laravel Backend which ...
beatcraft's user avatar
  • 299
0 votes
0 answers
34 views

To frame what im trying to do. I work for a small reatailer and we had an idea for a promotion where we put a gift card in a small safe. The Safe has the numbers 1,2,3,4,5 and needs 5 a digit code to ...
VinsonCernuto 's user avatar
1 vote
1 answer
593 views

I am stuck on this problem for a while now: I am trying to set a http only cookie in my Nest backend to store a jwt token that I can later access in my Next client. The part that should set it is this:...
K. Gero's user avatar
  • 39
0 votes
1 answer
94 views

In php.ini where can I set the default "secure" parameter value to true for the setcookie() call(): https://www.php.net/manual/en/function.setcookie.php#:~:text=match%20all%20subdomains.-,...
Shawn's user avatar
  • 34.5k
0 votes
1 answer
38 views

I have a filterscript which works nice but when you click on a link it needs to remember your last selected filter. Does anyone knows how I can add this? Cookie/local storage? I have made a fiddle: ...
fourroses's user avatar
  • 124
0 votes
0 answers
25 views

I am facing a problem that when I send request to my server for signin, I am able to see cookies in the network tab as response but it is not visible in application tab i.e. it does not get saved. I ...
Gauri Sharma's user avatar
0 votes
0 answers
95 views

When your backend is deployed to aws and you have to develop http cookie authentication to a locally hosted reactjs frontend how do you implement it? The issue is.. When I call the login API endpoint ...
Pankaja Chalaru's user avatar
0 votes
1 answer
231 views

apologies if the title question is confusing, but I'm not entirely sure how to ask or phrase this. Basically, I want a button to trigger (it opens a popup) on page load—easy enough. However, the ...
bwoin's user avatar
  • 3
0 votes
1 answer
270 views

I have 2 AppService, one for my django backend and another for my angular frontend. Each appService has its domain. On the login endpoint, the backend must generate and set a cookie with a jwt in the ...
JulianGibelli's user avatar
0 votes
1 answer
146 views

My server works on localhost and my VPN address (26.185.15.150), when I make request to http://localhost:3500/login/auth, I get correctly response and cookies. When I make request to http://26.185.15....
BethakZS's user avatar

1
2 3 4 5
25