Giter VIP home page Giter VIP logo

threads.js's Introduction

threads.js

thread.js is a Node.js library that allows you to interact with the Threads API

npm version Downloads Average time to resolve an issue Percentage of issues still open

FeaturesInstallation and updatingUsageMethods

Features

  • Object-oriented
  • Performant
  • Authenticated
  • 100% coverage

Installation and updating

npm install @threadsjs/threads.js

Usage

const { getToken, Client } = require('@threadsjs/threads.js');

(async () => {
	const token = await getToken('username', 'password');
	const client = new Client({ token });

	await client.users.fetch('25025320').then(user => {
		console.log(user);
	});
})();

Methods

client.users.fetch

In the parameters, pass the userId of the user whose information you want to get.

await client.users.fetch(1)

client.users.follow

Pass the userId of the user you want to subscribe to in the parameters

await client.users.follow(1)

client.users.search

Pass the query as the first parameter, and the number of objects in the response as the second parameter (by default - 30)

await client.users.search("zuck", 10)

client.users.followers

In the parameters, pass the userId of the user whose followers you want to get.

await client.users.followers(1)

client.users.following

In the parameters, pass the userId of the user whose followings you want to get.

await client.users.following(1)

client.feeds.fetchThreads

In the parameters, pass the userId of the user whose threads you want to get.

await client.feeds.fetchThreads(1)

client.feeds.fetchReplies

In the parameters, pass the userId of the user whose replies you want to get.

await client.feeds.fetchReplies(1)

client.feeds.recommended

Getting a list of recommendations.

await client.feeds.recommended()

client.posts.fetch

In the parameters pass the id of the post you want to get information about

await client.posts.fetch("aAaAAAaaa")

client.posts.likers

In the parameters pass the id of the post whose likes you want to get

await client.posts.likers("aAaAAAaaa")

client.posts.create

The method is used to create a thread. Pass the text of the thread as the first parameter, and the user id as the second

await client.posts.create("Hello world!", 1)

client.posts.reply

The method is used to create reply to a thread. Pass the text of the reply as the first parameter, the user id as the second, and post id as the third

await client.posts.reply("Hello world!", 1, "aAaAAAaaa")

client.posts.delete

The method is used to delete a thread. Pass the post id as the first parameter, and the user id as the second

await client.posts.delete("aAaAAAaaa", 1)

client.posts.like

The method is used to like a thread. Pass the post id as the first parameter, and the user id as the second

await client.posts.like("aAaAAAaaa", 1)

threads.js's People

Contributors

elijah-wright avatar danya7423 avatar jastinxyz avatar thisisdice avatar mastriel avatar wokesdev avatar sooluh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.