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);
  }

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.
Was this page helpful?