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
When using with @fastify/passport and @fastify/secure-session, sometimes authentication doesn't work. It sends Forbidden on callback url which corresponds to verify step in this library.
After some inspection, I found that @fastify/secure-session doesn't flushes any changes made on the library. I resolved this issue by calling touch method every time when it's being modified.
When using with
@fastify/passport
and@fastify/secure-session
, sometimes authentication doesn't work. It sends Forbidden on callback url which corresponds to verify step in this library.After some inspection, I found that
@fastify/secure-session
doesn't flushes any changes made on the library. I resolved this issue by callingtouch
method every time when it's being modified.My suggestion is to call touch method if it's available for fastify compatibility
The text was updated successfully, but these errors were encountered: