Caleb Contreras

Results 14 comments of Caleb Contreras

3 - Account needs to have 2FA disabled in order to create a post.

Point 3. could also be extended to not only Device IDs but Device identifiers - Why? Passing only device ID Instagram will still prompt the sign/publish as a unrecognized login...

> Does this also happen on WebP transparent images as well? Just did a test and yes, it also happens with WebP transparent images [Edit] The PNG image I was...

Try to get the token with and pass it manually ``` const token = await threadsAPI.getToken() ``` ``` const threadsAPI = new ThreadsAPI({ token: `${token}`, username: '${username}', // Your username...

> In your code, You cannot access `threadsAPI` before initialization right? You are creating a new object named `threadsAPI` after you are trying to access it to get token. >...

For the workers being distributed to different containers i don't have an issue since i don't use the chat rendering, as russelg said if this makes things easier i don't...

> I am also getting this error. Notably, however, I am also encountering the same error when logging in with Meta's Threads application. So I am thinking that this is...

> @Aerglonus Could you show us the code how you can login with `token` and `userId` ? Just pass the values to client, in my case i passed some extra...

> @Aerglonus I tried your approach, but didn't work for me. Here is the code. > > ```ts > const threadsAPI = new ThreadsAPI({ > verbose: true, > noUpdateLSD: true,...

Maybe this approach within the `publish` method response could work? ```typescript export type PublishResult = { postID: string; threadID: string; captionText: string; userID: string; }; publish = async (rawOptions: ThreadsAPIPublishOptions...