Sithu Khant
Sithu Khant
Explore posts from servers
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
glad it worked
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
maybe you could get chatgpt.
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
btw, can you please provide me your post method codes?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
I am also using Hono integrated to SvelteKit
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
which one?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
are you also using Hono?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
you can check in the better-auth docs
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
It contains the cookie info
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
That message is what we need. So, just replied like that.
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
It worked, I just don't know what is the data type of res json. So, I first console.log and there is code and message if response is not ok.
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
In the end, I just did like this:
.post("signIn", zValidator("json", loginSchema), async (c) => {
const data = c.req.valid("json");
const { email, password } = data;

try {
const res = await auth.api.signInEmail({
header: c.req.raw.headers,
body: { email, password },
asResponse: true
});

if (!res.ok) {
const data: any = await res.json();
return c.json({ success: false, message: data?.message }, 500);
}

const cookies = res.headers.get("set-cookie");
if (cookies) {
c.header("set-cookie", cookies);
}

return c.json({ success: true, message: `Success` }, 200);
} catch (error) {
const message = handleAuthError(error);
return c.json({ success: false, message }, 500);
}
})
.post("signIn", zValidator("json", loginSchema), async (c) => {
const data = c.req.valid("json");
const { email, password } = data;

try {
const res = await auth.api.signInEmail({
header: c.req.raw.headers,
body: { email, password },
asResponse: true
});

if (!res.ok) {
const data: any = await res.json();
return c.json({ success: false, message: data?.message }, 500);
}

const cookies = res.headers.get("set-cookie");
if (cookies) {
c.header("set-cookie", cookies);
}

return c.json({ success: true, message: `Success` }, 200);
} catch (error) {
const message = handleAuthError(error);
return c.json({ success: false, message }, 500);
}
})
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
@lonelyplanet, hey sorry for late reply.
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
could you please give an example?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
I still don't get it
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
How can I get?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
If I do that, I don't be able to get res.headers from it
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
If I do that, it doesn't work
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
...any suggestion?
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
I think I should get 500
46 replies
BABetter Auth
Created by Sithu Khant on 3/2/2025 in #help
This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
No description
46 replies