stormblessed
CCConvex Community
•Created by stormblessed on 2/7/2025 in #support-community
Sharing Convex Authentication State Between Main App and Share Extension in React Native
I'm building a React Native app with Convex and Clerk for authentication. I'm trying to implement a share extension that needs to access the authenticated Convex state from the main app.
Current Setup
- Main App:
- Using Clerk for authentication
- Using
ConvexProviderWithClerk
for Convex integration
- Token caching implemented with expo-secure-store
and keychain access group sharing
- Share Extension:
- Separate entry point (index.share.js
)
- Same Clerk and Convex configuration as main app
- Using the same token cache with keychain access group
What I've Done
1. Set up keychain sharing between main app and share extension:
2. Confirmed that Clerk tokens are being shared (I can see the __clerk_client_jwt
in the logs)
3. Using useConvexAuth()
in the share extension:
The Issue
Even though the Clerk token is being shared successfully through the keychain access group, the share extension still shows as unauthenticated in Convex (isAuthenticated
is false), despite the main app being authenticated.
Questions
1. Is there anything special needed to make Convex recognize the shared Clerk authentication state in the share extension?
2. Are there any specific configuration requirements for Convex to work with share extensions?
3. Is there a recommended pattern for sharing authentication state between a main app and its share extension when using Convex?
Any guidance would be greatly appreciated!2 replies
CCConvex Community
•Created by stormblessed on 1/19/2025 in #support-community
[Convex Auth] Clerk Integration with Convex
Clerk will automatically create a convex user for social sign ups but the same flow doesn't work for email sign ups. Convex user is not being created automatically for Email sign up flow while it works correctly for social signup and sign in.
The following is the code for email password registration.
13 replies
CCConvex Community
•Created by stormblessed on 12/4/2024 in #support-community
table value in array when querying
I can’t find a way to check if, say, a number is in an array of numbers when querying the db
9 replies