import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { // Automatically fetches more pages as needed. for await (const session of client.apps.users.sessions.list('app_id', 'user_id')) { console.log(session.id); }}main();
import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { // Automatically fetches more pages as needed. for await (const session of client.apps.users.sessions.list('app_id', 'user_id')) { console.log(session.id); }}main();