Convex Community

CC

Convex Community

Join the community to ask questions about Convex Community and get answers from other members.

Join

support-community

show-and-tell

general

self-hosted

announcements

Add access token from OAuth provider

I've successfully used the Spotify provider from @auth/core/providers/spotify with covexAuth to create users/sessions in my Convex app. Now, I'd like to call the Spotify API with the proper access token. I tried using the token generated by Convex Auth's signIn, but this doesn't appear to work—I suppose that makes sense, but it was worth a shot. Since the Convex Auth docs mention that configs are implemented with Auth.js configs, I took a look at the Auth.js "Extending the session" docs. They expose session and jwt callbacks for the purpose of sending data from a provider to the client. It looks like these callbacks are intentionally left out of the convexAuth implementation, but is there a way to achieve something similar?...

Suggestion: Drop "Convex Developer Hub" from Convex Docs page titles

It's probably a remnant of the past? Don't think it shows up anywhere else, but it does show up in link previews.

Login with cli or programmatically

Hi, I'm creating an app that uses the WebContainer from Stackblitz to run cli commands from a Linux-like environment in the browser. I'm trying to spin up a convex development server from this environment, but running npx run dev would require authentication, and not all end users would have a github account for authentication. Is it possible to authenticate without opening a browser? Thanks....

Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)

Issue I'm using Clerk with Convex in an Expo Router app, and everything loads fine, logs me in, and works as expected. However, I get the following error when using ConvexProviderWithClerk: ```vbnet ERROR Auth token is not a valid JWT, cannot refetch the token...

React Native Offline App Behavior

I'm build an iOS app with Expo / React Native. I am using Expo Go at least for now (honestly this could be my issue...). Testing on an iPhone. What's the default behavior for Convex functions when network connection is lost? I was expecting an error, but instead what happened was nothing until I reconnected to the network and it processed all the requests. Is this normal? I was hoping it would throw an error or something so I could handle it, instead it created a buggy UI experience. I'll have to make a dev build to really test this, but just wanted to see if anyone knew the expected behavior here. Thanks....

Creating a validator for [key: string]: any

Is it possible to create a Convex validator for the following type? ```typescript export type JSONContent = { type?: string;...

Value does not match validator

I pass a convex id as an URL params. This URL params i use to make a query to get other list of data. What i wanted to do was if someone tried to modify the URL say it doesnt exist but i get the convex error. Any solution as to why this happens ?
No description

Stuck in "Analyzing and deploying source code..." Phase During Convex Deployment

Hey folks -- am experiencing an issue where our Convex deployment gets stuck at the "Analyzing and deploying source code..." phase. have made several changes to fix runtime constraint issues, but the deployment still hangs. Upfront notice: I am "vibe-coding" here and using cursor to build my app → convex has been great until the past few hours where for whatever reason the prod deploy hangs forever. Details follow if there's any kind souls out there able to help! End goal: building inbound parse from email where tokened replies get sent to / stored in convex and then ingested by UI for display in a chrome extension. Have other content stored in convex and displaying just fine. Just trying to get the webhook-token reply system working here. Issues...

Error handling in query functions

Sometimes, when I write queries, I want to check if the user is authorized to reach that endpoint and if not I want to throw an error back to the user. But, I don't want this error to completely hijack the ui like it normally does, like with an error boundary. Sometimes, I just, say, want an additional UI to show up with the option for the user to sign in I simply would like to have back the diversity of errors that regular http requests offer. I'm torn on how I'm supposed to implement errors for authentication, or authorization or some other error, and send that back to the frontend...

how to create tuples in convex

export const weekDayValidator = v.array( v.literal(WeekDay.SUNDAY), v.literal(WeekDay.MONDAY), v.literal(WeekDay.TUESDAY), v.literal(WeekDay.WEDNESDAY),...

NEED HELP: Somehow get rate limited

I created a new convex account using my github and it's showing me this error I also tried accessing the dashboard 3 hours ago and saw the same error. i thought it might get fixed after some time when now also seeing the same error...
No description

nextauth auth with convex tokens

Hi I'm trying to integrate nextauth with convex using jwt tokens, will not be using convex auth. everything looks correct, but useConvexAuth always returns isAuthenticated=false, even though it is passed as true to ConvexProviderWithAuth...

I would like to add to Functions.

However, when I did npx convex dev, nothing was added to the deployed functions. I saw in the project log that it was deployed, so I think I have the right deploy destination. I am not sure which one is the problem, so I will list the possible ones. ...

TanStack Start and Convex Pagination glitches

TanStack Start 1.111.10, and Convex bits version as of today. I'm loading a component into an Outlet that is a table that displays a list of models of devices. Using the instructions for Paginated Queries I'm able to load 10 items at a time, but there one odd (to me) behavior and one crash. Odd behavior - I have a Load More button that does load more, but it reloads Outlet. Is that nomral? I thought it would just append to the end of the table. It's not doing a full root reload, but its reloading the outlet and adding 10. Crash - when I get to the end of the rows, TanStack crashes with the following. ...

Nodemailer Causes Runtime Error

https://docs.convex.dev/functions/runtimes#nodejs-runtime Looks like node mailer causes trouble with convex and opting in doesn't cut it....
No description

How to get user's locale(selected language)

i want to localize push notifications, but in order to do that i need the locale of user

auth process not defined?

Hey, i'm trying to implement convex auth, and i'm getting this error: process is not defined ReferenceError: process is not defined at materializeAndDefaultProviders (http://localhost:5173/node_modules/.vite/deps/@convex-dev_auth_server.js?v=524c2def:4929:18) at configDefaults (http://localhost:5173/node_modules/.vite/deps/@convex-dev_auth_server.js?v=524c2def:4903:18)...

Are you planning on supporting angular?

Just out of curiosity since convex seems it would go along rxjs very well I'm kind of surprised that angular support is not there. Are there any technical reasons for that or is it just a matter of preference?

Store dates

Is there a type for dates?

Convex useQuery Not Updating in Real-Time

Convex useQuery Not Updating in Real-Time I'm building an npm package (xerexjs) for real-time notifications in React/Next.js using Convex. The useQuery for fetching notifications requires a manual refresh instead of updating in real-time. Schema...