this post was submitted on 11 Jan 2025
4 points (100.0% liked)
Lemmy Apps
5586 readers
74 users here now
A home for discussion of Lemmy apps and tools for all platforms.
RULES:
- No spamming
- Be nice and have fun
- Follow the general lemmy.world rules
An extensive list of Lemmy apps is available here:
Visit our partner Communities!
Lemmy Plugins and Userscripts is a great place to enhance the Lemmy browsing experience. [email protected]
Lemmy Integrations is a community about all integrations with the lemmy API. Bots, Scripts, New Apps, etc. [email protected]
Lemmy Bots and Tools is a place to discuss and show off bots, tools, front ends, etc. you’re making that relate to lemmy. [email protected]
Lemmy App Development is a place for Lemmy builders to chat about building apps, clients, tools and bots for the Lemmy platform. [email protected]
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
/api/v3/user
is for fetching info about any user, it requires either aperson_id
orusername
to be given as a URL param to work, e.g.https://feddit.uk/api/v3/user?person_id=28426
will get my profile. There currently isn't a way to get just theperson_view
from the JWT, though API v4 will have an/account
endpoint that you'll be able toGET
with the auth header. Most appsGET
the/site
endpoint and usemy_user
returned from that.