remix-auth icon indicating copy to clipboard operation
remix-auth copied to clipboard

Simple Authentication for Remix

Results 22 remix-auth issues
Sort by recently updated
recently updated
newest added

I initially attempted to update the Remix dev dependencies but that caused two kinds of errors in the tests: 1. `createCookieSessionStorage` is no longer exported directly from `@remix-run/server-runtime` but from...

### Describe the bug A rabbit hole. **To summarize:** When a redirect is sent from an external site (as in oauth callbacks), and cookie settings are SameSite=strict, then chrome does...

Jsdoc @default for throwOnError? should be false per https://github.com/sergiodxa/remix-auth/blob/5982fca4ef2d014b9f4e1fc116dba5c83e3514af/src/authenticator.ts#L68

# Description Created a documentation website for remix-auth with strategies. used Nextra as a template. demo: https://remix-docs-flame.vercel.app/

### Describe the bug When successfully authenticating, authenticator will throw a redirect response if only `successRedirect` is provided to the config. Not sure why the response is thrown when successful....

Hello @sergiodxa, Thank you for your work! I find it super useful (your blog too :). I have a use-case where I need to have a strategy with a custom...

### Describe the bug I would love to be able to access the `userProfile` method in my remix app to identify the currently logged in user. Auth0-js has this functionality...

### Describe the bug when using methods like isAuthenticated it doesn't return a `User` but rather a `SerializeFrom` e.g. if you try to return a record with a bigint it'll...

This PR modifies the logout functionality to handle the deletion of additional cookies beyond the authentication cookie managed by `remix-auth`. Changes: - Introduced an optional `headers` parameter to the `logout`...