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
Hi, I have a custom route.js file below. I log in and set the accesstoken value as follows. While this process is happening on the client side and in postman, I get an error in my route file.
▲ Next.js 14.2.3
✓ Starting...
✓ Ready in 469ms https://id.pointsoft.app/api/Auth/Login
{"email":"[email protected]","password":"Passw0rd!","authenticatorCode":""}
TypeError: fetch failed
at node:internal/deps/undici/undici:12618:11
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Object.authorize (/app/.next/server/app/api/auth/[...nextauth]/route.js:1:2312)
at async Object.c (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:4474)
at async g (/app/.next/server/app/api/auth/[...nextauth]/route.js:6:104099)
at async a (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:19579)
at async e.length.t (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:20990)
at async /app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:34666
at async eS.execute (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:25813)
at async eS.handle (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:35920) {
cause: Error: connect ECONNREFUSED 127.0.0.1:443
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16)
at TCPConnectWrap.callbackTrampoline (node:internal/async_hooks:128:17) {
errno: -111,
code: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 443
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, I have a custom route.js file below. I log in and set the accesstoken value as follows. While this process is happening on the client side and in postman, I get an error in my route file.
▲ Next.js 14.2.3
✓ Starting...
✓ Ready in 469ms
https://id.pointsoft.app/api/Auth/Login
{"email":"[email protected]","password":"Passw0rd!","authenticatorCode":""}
TypeError: fetch failed
at node:internal/deps/undici/undici:12618:11
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Object.authorize (/app/.next/server/app/api/auth/[...nextauth]/route.js:1:2312)
at async Object.c (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:4474)
at async g (/app/.next/server/app/api/auth/[...nextauth]/route.js:6:104099)
at async a (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:19579)
at async e.length.t (/app/.next/server/app/api/auth/[...nextauth]/route.js:30:20990)
at async /app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:34666
at async eS.execute (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:25813)
at async eS.handle (/app/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js:6:35920) {
cause: Error: connect ECONNREFUSED 127.0.0.1:443
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16)
at TCPConnectWrap.callbackTrampoline (node:internal/async_hooks:128:17) {
errno: -111,
code: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 443
}
}
Beta Was this translation helpful? Give feedback.
All reactions