Login keeps redirecting back on develop – anyone else?

yug

New member
Hi, is anyone else facing a login issue on the latest develop branch?
Login works initially, but it keeps redirecting back to the login screen. Just checking if I’m the only one or others are seeing this too.


 
Does your api console throw any errors?

Yes, I’m seeing error on API console .

The issue seems to occur during the `RefreshToken` mutation. Here’s the network payload from my side:

Code:
{

  "operationName": "RefreshToken",

  "variables": {},

  "query": "mutation RefreshToken($refreshToken: String) {\n  refreshToken(refreshToken: $refreshToken) {\n    authenticationToken\n    refreshToken\n    __typename\n  }\n}"

}

I can share the full network logs or response details if that helps.
 
Make sure your repos fork are up to date and sync it with your origin. Next is maybe your browser issue shows you conflicts token regarding this site cookies. Make sure your Database seed properly and check your user table in DB.
Setup DB: pnpm run push_drizzle_schema
Seed Data: pnpm run add-sample_data
1767296651088.webp

Now delete your node_modules in talawa-admin and again install it using pnpm install and then start your server pnpm run serve Now try again and login the portal. If admin email not works then try other stuff. Hope your problem will done after that...
1767296915424.webp
 
Make sure your repos fork are up to date and sync it with your origin. Next is maybe your browser issue shows you conflicts token regarding this site cookies. Make sure your Database seed properly and check your user table in DB.
Setup DB: pnpm run push_drizzle_schema
Seed Data: pnpm run add-sample_data
View attachment 55

Now delete your node_modules in talawa-admin and again install it using pnpm install and then start your server pnpm run serve Now try again and login the portal. If admin email not works then try other stuff. Hope your problem will done after that...
View attachment 56
I followed these steps and now this error is coming while logging in:

Field "recaptchaToken" is not defined by type "QuerySignInInput". Cannot query field "refreshToken" on type "AuthenticationPayload".
 
Back
Top