Go to file
Damien Erambert 54568fa886
update jsdoc
2022-07-31 22:43:36 +02:00
.husky Setup Prettier 2022-07-31 21:51:51 +02:00
.vscode Setup Prettier 2022-07-31 21:51:51 +02:00
lib run prettier 2022-07-31 21:54:56 +02:00
.gitignore Initial commit 2022-06-29 14:24:33 +02:00
.prettierrc.json Setup Prettier 2022-07-31 21:51:51 +02:00
LICENSE Initial commit 2022-06-29 14:10:14 +02:00
README.md Initial commit 2022-06-29 14:24:33 +02:00
lib.js update jsdoc 2022-07-31 22:43:36 +02:00
lint-staged.config.js Setup Prettier 2022-07-31 21:51:51 +02:00
package-lock.json Merge branch 'prettier' into files-upload 2022-07-31 21:54:17 +02:00
package.json Merge branch 'prettier' into files-upload 2022-07-31 21:54:17 +02:00

README.md

cohost.js

Unofficial API for cohost.org

Install

npm i cohost

Usage

const cohost = require("cohost");

(async function() {
    // Create User and authenticate
    let user = new cohost.User();
    await user.login("YOUR_EMAIL", "YOUR_PASSWORD");

    // Get first Project of user
    let [ project ] = await user.getProjects();

    // Create Post
    await cohost.Post.create(project, {
        postState: 1,
        headline: "hello world from cohost.js",
        adultContent: false,
        blocks: [],
        cws: [],
        tags: [],
    });

    // Get Posts of Project
    let posts = await project.getPosts();
})();

Features

Works:

  • Logging in
  • Getting the posts of a project
  • Creating a post

Doesn't work:

  • Editing a post: possible, haven't done it
  • Sharing a post: possible, haven't done it
  • Liking a post: possible, haven't done it
  • Getting notifications: possible, haven't done it
  • Uploading attachments: possible, haven't done it
  • Getting the home feed: possible, haven't done it
  • Editing profiles: possible, haven't done it
  • Getting followers and following: possible, haven't done it
  • Getting bookmarks and bookmarking: possible, haven't done it
  • Getting a post by its ID: seems impossible? endpoint seems to be disabled
  • Getting posts from a tag: haven''t checked
  • ...everything else