This repository was archived by the owner on Sep 8, 2023. It is now read-only.
v1.6.2 (β¨ Full User/Post Details, π Mute/Block, π Notif., π Search Users, π Rec.)
Threads API - Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's Threads.
Summary
- Thanks to @stevenlafl, we got a bunch of methods added in this release π
- β¨ Full User Profile & Thread(Post) Details with Authorization β
getUserProfileLoggedInandgetThreadsLoggedIn. - π Mute/Unmute a user or a user's post β
muteandunmutewithuserID(required, thanks to @aleclarson) andpostID(optional) - π Block/Unblock a user β
blockandunblock - π Notifications β (fetch)
getNotifications, (update view state)setNotificationsSeenlet data = await threadsAPI.getNotifications( ThreadsAPI.NotificationFilter.MENTIONS, // {MENTIONS, REPLIES, VERIFIED} ); if (!data.is_last_page) { const cursor = data.next_max_id; data = await threadsAPI.getNotifications(ThreadsAPI.NotificationFilter.MENTIONS, cursor); }
- π Search Users β
searchUsers - π Fetch Recommended Users β
getRecommendedUsers
What's Changed
- Add an app to the registry by @swarajbachu in #243
- Add App by @Digital39999 in #242
- Add a slew of authenticated features by @stevenlafl in #189
- [ImgBot] Optimize images by @imgbot in #263
- api, docs: Refactor API, Update README.md with new methods by @junhoyeo in #277
- api: Fix verbose logs and
ThreadsAPIErrormessages by @junhoyeo in #279 - api, docs: rename
getRecommended->getRecommendedUsersby @junhoyeo in #280
New Contributors
- @swarajbachu made their first contribution in #243
- @stevenlafl made their first contribution in #189
Full Changelog: v1.5.4...v1.6.2