Skip to content

app.user and app.getUsers returning 404 #3327

Description

@reynaldichernando

hi team i'm getting this error while trying to get users data for my app

Image

checking network console, both return this exact error

{
    "error": "Driver not found: app-telemetry:(no default)",
    "message": "Driver not found: app-telemetry:(no default)",
    "code": "not_found"
}

code

(async () => {
            const app = await puter.apps.get("stampy");
            const users = await app.getUsers({limit: 2, offset: 0});
            console.log(users);
        })();

(async () => {
            const app = (await puter.apps.get("stampy"));
            for await (const user of app.users()) {
                console.log(user)
            }
        })();

as a sanity check, the "stampy" app returned proper result

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions