5 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
236
views
InvalidTokenError: Invalid Compact JWS (Auth0 with ReactJS and NodeJs Express)
tried reading the similar issues in auth0 community and stack overflow but it doesn't fix my problem. So trying to create myself questions and direct ask here.
the real-estate-api is the Custom API i ...
3
votes
2
answers
716
views
Ilibrary "libhermes_executor.so" not found after upgrading to react-native 0.76.1
I started migrating my react-native project from 0.73.0 to 0.76.1. I've had to keep the new architecture to false since some of the packages I use don't seem to support it.
The project works fine in ...
0
votes
1
answer
169
views
How should I test useAuth0().authorize in Jest for Expo app in React Native
I've looked around for answers to this but can't find any solutions regarding this topic.
Essentially, I'm trying to write some unit tests using '@testing-library/react-native' to test that useAuth0()....
1
vote
0
answers
52
views
Persistent User Authentication in React Native with AsyncStorage Not Working
I'm developing a React Native app where I need to persist user authentication across app restarts. I'm using AsyncStorage to store the session token. Logging in works fine, but when I close the app ...
1
vote
1
answer
694
views
How to get refreshToken on react-native-auth0
i'm using react-native-auth0 to handle my SSO.
Login works, but my refresh token is null. Why?
This is the code:
import {useAuth0} from 'react-native-auth0';
export const LoginScreen = () => {
...