Grmayt
Grmayt
BABetter Auth
Created by Grmayt on 4/6/2025 in #help
Expo and hono.js
In my hono.js
app.get('/api/auth/callback/google', async c => {
try {
return c.json({
status: 'ok',
});
} catch (error) {
console.error('Google callback error:', error);
}
app.get('/api/auth/callback/google', async c => {
try {
return c.json({
status: 'ok',
});
} catch (error) {
console.error('Google callback error:', error);
}
after logging in, the client sends the endpoint to the backend. In the backend what should I do next for this? And after logging in, the user table got updated but the useSession returns null.
113 replies