Caleb Contreras

Results 14 comments of Caleb Contreras

Rate limited by Instagram, use a proxy or wait for the rate limit cooldown

Similar to #111 devs are aware of the bug

You can do this ```typescript const mainpost = await threadsAPI.publish({ text: "Main post", )} // main post will return the post ID await threadsAPI.publish({ text: "🤖 Beep", link: "https://github.com/junhoyeo/threads-api", parentPostID:...

@ttptracker try it like this and see if it works for you ```typescript const mainpage = await threadsAPI.getUserFollowers('userID'); console.log(mainpage.next_max_id); const threads = await threadsAPI.getUserFollowers('userID', { maxID: mainpage.next_max_id, }); console.log(JSON.stringify(threads)); ```...