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
I am using the sessionauth package but needed to implement a session lookup were the token came in the request body rather than a cookie in the header.
I was able to work around the in-flow lookup by adding a GetStore() function to this sessions package.
I cook up an http.Request with the cookie from my request body and lookup the gorilla session which has the sessionauth userId.
Could you consider adding this GetStore() function or can you suggest a better way?
The text was updated successfully, but these errors were encountered:
I am using the sessionauth package but needed to implement a session lookup were the token came in the request body rather than a cookie in the header.
I was able to work around the in-flow lookup by adding a GetStore() function to this sessions package.
I cook up an http.Request with the cookie from my request body and lookup the gorilla session which has the sessionauth userId.
Could you consider adding this GetStore() function or can you suggest a better way?
The text was updated successfully, but these errors were encountered: