Hono and Better-Auth
Do you think if I create my own route for better-auth, would it be double api calling? If I want to keep only one api.
100 Replies
@lonelyplanet any tips?
I see you created a new thread I think it is same concern as me 😄
GitHub
GitHub - lonelyplanetdev/better-auth-with-hono-handler-nextjs
Contribute to lonelyplanetdev/better-auth-with-hono-handler-nextjs development by creating an account on GitHub.
Thats an option to use the better-auth invokable functions without the using the auth handler in hono, Downside you would have to create your own routes for auth logic and couldnt use better-auth/client but you can use hono/client in that example
@Sithu Khant That will allow you to manage one api but will make implementation more complex
it won't work
the better-auth live in
/api/auth/*
, if we mess up with its pass, auth
server code will fail
You need different path like /api/authorize/sign-in
for your own one
that is what I am doing it.You just dont add the handler
the downside is I need any single routes like better-auth has
that handler?
Step 7
it will still work?
Have a look at that repo
It works and uses hono+nextjs
if it is true, I am hype!
GitHub
better-auth-with-hono-handler-nextjs/src/app/api/[[...route]]/route...
Contribute to lonelyplanetdev/better-auth-with-hono-handler-nextjs development by creating an account on GitHub.
let me try that...
There is a small type error on the headers but its still working, the type error was safe to ignore since its just reading the headers
what the f**k, it is working...!
Wait i think the signout wont work...
its because i messed up the headers
I think the handler is only for frameworks
The handler is there for the client but also means you dont have to manually write out all your auth apis
I think if you have custom middleware, you might not need
headers: c.req.header(),
I have my own middlewarebut the concept is there you dont need the handler to use betterAuth.api
Like this:
That should work fine!, you still need to pass in headers to every betterAuth.api call
thanks, I would try
hey, how did you do for signout?
use this as an example
why I need raw headers?
The functions require headers to get the current session
without headers how would the signout method know to delete users a session and not users b session
now, I can use like this on my client code:
I don't need both auth client and hono client anymore, I only would need hono client!
That is cool!
Auth client will not work this way anyway auth client needs the auth handler
I mean it is not a problem to use both auth client and hono client if client and server are in the same folder, but might not be an ideal way if you have api from different server
If you are deploying backend and frontend separately you can use a mono repo for type safety in development.
really, how can I do that?
like graphql?
but I don't like that one
maybe openapi?
You could have hono backend export the AppType and it can be used inside of the front end to create the honoClient with that exported type
Turbo repo would be the easiest way to start playing with monorepos.
thanks, I would try
@lonelyplanet I think there is something wrong with my codes.
the cookies didn't get store!!!
this is my auth routes:
The routes im doing since im in nextjs im using the nextjsCookies plugin in auth instance
since your nolonger using the handler you need yo handle cookies yourself
yep
I think i need to follow this docs:
https://www.better-auth.com/docs/concepts/cookies
Cookies | Better Auth
Learn how cookies are used in Better Auth.
this is just my current auth server:
use
import {
getCookie,
getSignedCookie,
setCookie,
setSignedCookie,
deleteCookie,
} from 'hono/cookie'
for your cookies setting and getting
your shouldn't need to get a cookie since your passing all headers in on every request
then?
man!, I don't know too much about cookies!
but for signup you want to first check if the
const res = await auth.api.signUpEmail(..rest of code);
then do const sessionToken = res.token; // this will be string | undefined
this token is the value you will set the cookie
I think i have a solution for you give me a secondreally...? thanks!
https://github.com/better-auth/better-auth/issues/1470
Seems like there might be a bug atm
GitHub
The setSignedCookie type and import causes not TS errors and appear...
Is this suited for github? Yes, this is suited for github To Reproduce Import setSignedCookie from better auth into a file Try use it. Current vs. Expected behavior Should be a valid function as th...
I got it working!!!
I just need to set this:
like this:
chatgpt helped me.. xD!
Does it work?
yes... it is freaking working!
The
auth.ts
file still the sameIm sureprised glad it works
thanks man
the problem I have is that when I get the headers the headers are
( from the hono server )
there is the cookies in the nextjs header but not in req.raw.headers
Hmm?
what to do man, Im stuck for weeks
Are your hono app hosted seperate from nextjs app?
Yes
What does your nextjs middleware look like
Auth server config
If I call the server URL/api/get session from here with the nextjs headers the the session returns but in the hono server I can't cus headers are missing
better auth config
are the server and nextjs app hosted on the same domain?
like api.example.com <- hone and example.com <- nextjs
nop but I've enabled cross origin cookies
the server is on 127.0.0.1:8787 and nextjs on localhost:3000
have you tried checking cookies in your browser?
that they are infact on both domains?
the browser has the cookie but not the server
I need to set the cookies in the server
I've tried everything but nothing worked, this is the client config
Using your browser the cookies are on the server domain?

and the App domain

are they on both?
there is the cookie in the browser but not in the header


Have you tried using localhost:8787
instead of 127.0.0.1
no I can't cus I'm on cloudflare worker
Everything breaks on localhost:8787
127.0.0.1 doesnt share cookies with localhost
How can I change the wrangler to be lcoalhost insted of 127
try use 127.0.0.1:3000 for you nextjs app
okey let me see
and also in your client config change it from localhost to 127.0.0.1
alright but isnt cross domain thing working
you have localhost set here
set to 127.0.0.1
but the env is the one loading ( thats a error of mine )
?
Oh okay just make sure your using 127.0.0.1 across everything
.env.local has the 127.0.0.1:8787 as a variable so that localhost gets overwritten
oeky
localhost doesnt appear to be the same as 127.0.0.1, doesn't count as same domain i believe after trying on my application changing localhost:3000 to 127.0.0.1:3000 does not have same cookies
even thought localhost should be an alias of 127.0.0.1
even if I'm logged in ysing 127.0.0.1 it dosent work

are the cookies shared?
127.0.0.1:3000 and 127.0.0.1:8787
Yes they are shared but still the heders gets nothing
session { session: undefined, user: undefined }
header Headers(7) {
'accept' => '/',
'accept-encoding' => 'br, gzip',
'accept-language' => '*',
'host' => '127.0.0.1:8787',
'sec-fetch-mode' => 'cors',
'user-agent' => 'Next.js Middleware',
'x-middleware-subrequest' => 'middleware',
[immutable]: false
}


You know what.
Middleware is server side
await client.user.getUserSession.$get()
This would be your server asking the other server but its not a browser so cookies arent being passed
manually pass the session token
How to do that
is this ./lib/client?
The problem is when you run this on your browser
await client.user.getUserSession.$get() -> the Browser is automatctially appending the cookies to the request
However if called from the server cookies dont exist on the server so how is it supposed to send the cookies?
you have to add the cookies header to the get request
that was with a fetch
you would have to add the cookie header to the call your making with your client
yes
I cant get cookies for next in the hono server cus process is undefined
what is
You need to get cookies in nextjs middleware
import { createClient } from "jstack";
import { AppRouter } from "~/server";
/**
* Your type-safe API client
* @see https://jstack.app/docs/backend/api-client
*/
export const client = createClient<AppRouter>({
baseUrl:
${process.env.NEXT_PUBLIC_SERVER_URL ? process.env.NEXT_PUBLIC_SERVER_URL : "http://127.0.0.1:8787"}/api
,
credentials: "include",
fetch: (input: RequestInfo | URL, requestInit?: RequestInit) => {
return fetch(input, {
method: requestInit?.method ?? "GET",
credentials: "include",
headers: {
...requestInit?.headers,
},
body: requestInit?.body ?? null,
});
},
});
it is the hono clientJStack Docs - Full-Stack Next.js & TypeScript Toolkit
Build fast, reliable Next.js apps with the most modern web technologies.
and then pass them to your server
okey
evn If I didi that I cant run the admin procedures cus I don't have a session in the server
Your not listening. You need to PASS the cookies to your server
yes I understand You don't get what i'm telling you , I cant pass the cookie to the hono server
Why?
why can you not do that
I can do that just in the middleware , you can't get the next cookies in the hono server
because its hosted on different platforms
thats your nextjs middleware
?
I need to pass the cookies to here
Your hono server is fine, its the nextjs application.
Edit you NEXTJS middleware
I don't need to edit the middleware , the problem is in better auth not getting the server
Can you try it maybe?
Hi @Tenuka could you solve the issue? I'm facing same problem!
I was able to get cookie header in hono. But better-auth returns null
