Bad example in docs
How OIDC with Convex Auth works with HTTP actions endpoints
CONVEX_SITE_URL
system environment variable. From what I understand, specific endpoints defined by the OpenID spec are expected on such domain/URL (to conform to the spec). Examples of such endpoints are the /token
and the /authorize
. However, this same CONVEX_SITE_URL
is used for HTTP actions, such that if I have an HTTP action at convex/token.ts
, then the action is accessible by ${CONVEX_SITE_URL}/token
(assuming I have it configured to work that way).
Does this not conflict with the /token to be used for auth by convex auth as required by the OpenID spec?...Running Langfuse for AI tracing inside convex action
use node
directive), so ideally I'd use the nextjs guide but I'm not sure how to get that to work with Convex.
the founder of Langfuse said:
We have tested the vercel ai sdk integration on vercel (which default to edge functions when using the app router in nextjs afaik) which should be a similar to the cloudflare runtime...
Passing `ctx` to AI agent tools
how to use authRateLimits?
Convex Auth user table fields
ConvexReactClient query() return type?
query()
should be a Promise
of the result, but if there's an existing result, it gets returned directly without being wrapped in a promise. Is this a bug?
https://github.com/get-convex/convex-js/blob/main/src/react/client.ts#L459...How do I extend convex auth with my custom auth provider?
singIn("my-custom-provider", {address, message, signature})
singIn("my-custom-provider", {address, message, signature})
Error: [CONVEX Q(documents:getSidebar)]

Setting non-auth client context
Using non-primary GitHub email when signing up for Convex

Service Outage?
Dynamic table
Correct pattern for running a query onClick without re-running on re-render.
Convex 1.14.1 WebSocket InternalServerError
sentry errors

Hello,
npx convex dev
. I have created a deployment key in the Convex dashboard for both dev and production and added those as secrets in github.
In my github workflow I am adding the key into an env variable like this:
```...Next.js URL not changing using the documented middleware and ConvexAuth setup
/sign-in
until I refresh.
Not sure if this is a bug or user error and I've missed something....Is there anything similar like ConvexAuthNextjsServerProvider for Remix?
How to handle searching in an existing database where the state field has 2 versions of the text
NY
and ny
.
Should I convert everything to uppercase and then search?...