[magicLink - drizzleAdapter] The \"payload\" argument must be of type object. Received null
Hey guys, I am struggling to get to the bottom of this issue. I am hosting my backend with
open-next
- THis means that it's hosted in a lambda which shouldn't affect anything - My other DB functions work just fine.
- All envvars exist
- My implementation works locally.
- My hosted database connection works as expected in other parts of my app
This error is haunting me. Any tips for how I can debug it?
None of the logs defined below get triggered which is weird.
I am using this better-auth version: "better-auth": "1.2.3",
Any ideas? Am I missing something?
---
Here is my /api/auth/[...all] route
The reason I have a getBetterAuth
is because I am hosting on opennext & get + set the environment variables at runtime (for security purposes), so hence the reason for a function that will getBetterAuth WHEN it's needed. NOTE: I only initialize the client once, if exists, use existing, else create new client.

18 Replies
I updated some configurations in my opennext and got a little more detailed error message "i.get is not a function" but it's not that useful. Does anyone have an idea?

It looks like better-auth doesn't have valid sourcemaps: "Invalid source map."
could you check the health endpoint?
/api/auth/ok
@bekacru It looks like it's returning a 500.


I am going to try move my code initialization back to a "non dynamic" start where all envvars are loaded before runtime & therefore I don't need to do something like:
Altho I am not sure why this would be the root cause...
Is there something that I might be missing in terms of configuration?
I am starting to think MAYBE that my better-auth
I am starting to think MAYBE that my better-auth
baseURL: getServerUrl(),
is the cause. Perhaps my openext lambda is not allowing outside access to the internet EVEN though my better-auth is sitting next to my code in the same server, it is having to goto the 'cloudfronturl' which goes on a roundtrip.
But in saying this, there are no error logs. Have you encountered issues where "built" artefacts do not contain proper sourcemaps, this is what I seem to be encountering @bekacru
Still seem to get this error. Very strange. The error throws straight away so I am not sure if it's anything to do with internet access as my lambda has access to the internet

@James! Quite random but is your database in sync with your schema and have you recently ran the generate betterauth cli command
I will triple confirm the schema in my remote DB @lonelyplanet but: my local works and it is using the same script that was applied in my hosted DB (see attached file)
I really hope this is just some minor thing I have missed 😂 But it's hard to track down because the log isn't useful at all.
I will also do the betterauth cli tonight
^ I then have my drizzle which maps the snake_case back to camelCase
The reason i ask is the payload error i see lots off and when my db is not in sync although i was using prisma
Still postgres though
Have your checked you Prod db url, It is whitelisted IP to access db?
Your function might not beable to connect to your database
Try debugging your db and seeing if thats the issue
- Db connection is okay - Tested fully on another feature unrelated to better auth.
I'll focus around the DB side of things!
I connected to my database locally from within VPN and it worked perfectly. I also confirmed the DB connection works as expected because I can see insertions to tables unrelated to better-auth.
Is there perhaps an "origin" policy I might be missing
Okay - about to test something which will be the classic embarrassing issue if it was true lol
🤞
Nope it wasnt 😓 I thought it was the baseUrl being different to what my cloudfront URL was
first, you don't need to use the nextjs adapter
I will try this 👍 Do we need to set
trustedOrigins
- My assumption is that without setting these, those security configs just won't be used.only if your frontend and backend are hosted in a separate domain
I feel like I have exhausted most of my known possible solutions to this issue
I've just pushed this change to check your suggestion + added some extra logs.
Apart from this - is there anything else you suggest I try if this doesn't yield any beneficial information? 🤔
Thanks for the tips BTW!
No luck. Does better-auth have any logics around forwarding headers or cookies that might not be working well with a custom nextjs hosted solution via opennext
It looks like this might be a problem with opennext - I’m going to do some digging today.
Perhaps there are some behaviours that are causing this. Perhaps requesting itself is playing up
After looking through the code I have narrowde it down to the better-call implementation:
On the nextjs server, it is trying to fetch a relative path.
As we can see in the better-auth -> src/api/index.ts in this code:
I believe this is the culprit here:
basePath, <~ Here is the culprit
Okay, I found the issue:
The problem was that headers.get.key() was returning the .get is not a function.
NOW I haven't figured what the ROOT cause of this is. I initially thought it was because in nextjs 15 you needed to use
await headers()
BUT maybe this is only app pages, and not API routes.hmm? isn't request a proper
Request
object in open next?
try to call request.headers.get
Yeah it is. Going to have another look today
I have opened a PR for this: https://github.com/better-auth/better-auth/pull/1838
GitHub
fix: access of undefined in runtime that does have great support of...
Issue this solves
Discord thread
This fixes the issue The "payload" argument must be of type object. Received null where when debugged closer we got an error like this:
It wasn...