API Key Metadata is null?
For this configuration with v1.2.3:
I am trying a simple create:
But when I use the key, it's registered as valid, but with metadata set to the string
'null'
: (Verified this is the case on the DB side as well).
8 Replies
Thanks for the report, I'll check it out.
@Winston Yeah no clue how we messed up our unit tests but this is definitely a bug. I'll solve it and open a PR and send it here for you to track.
GitHub
fix(api-key): creating API keys metadata always returns null by pin...
also updated the tests to actually check if the metadata is valid.
read more here: https://discord.com/channels/1288403910284935179/1346739320588992589/1346739320588992589
Hi @Ping , what’s the typical timeline for a merged PR to make it to beta, and to be released?
Usually it's pretty fast.
Bekacru says probably today it will be full released
Awesome
I want to ask though @Ping ,
in the above code, the return type of
keyValid.metadata
is the string in the DB without being processed, e.g. "{\"org\":\"gh89j1rtNQDci5tq7eK0cQ9nx7BZodBJ\"}"
while in the case of key.metadata
, it is an object/record, which I can call key.metadata.org
in the above example. Is this intended behavior?Nope 😅
I'll fix it.
Hey sorry I took a while, I was at work.
Anyway, the PR is up now.
https://github.com/better-auth/better-auth/pull/1719
GitHub
fix(api-key): Results of
verify
endpoint's metadata isn't parsed ...Calling verify endpoint returns the stringified version of the metadata. This is fixed now.
Appreciate it!