-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create a signup_set route to allow reconsiling AN data with our KV store #63
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me once we stop using the DC API Key 👍
if ( | ||
sentKey === "" || | ||
Buffer.byteLength(sentKey) !== Buffer.byteLength(correctKey) || | ||
!Crypto.timingSafeEqual(Buffer.from(sentKey), Buffer.from(correctKey)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just stole yours! 😆
console.log( | ||
"AN set subscriber count: API Key did not match - returning 404", | ||
); | ||
return new Response("Not found", { status: 404 }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, makes sense to treat this as 404 rather than advertise that the route exists but they're not auth'd
Good to get 2nd pair of eyes on this & shouldn't merge until it has it's own real API key!