chatgpt-token

0.0.1 • Public • Published

chatgpt-token

A npm package to get chatgpt token by your username and password.

Requirement

This package use playright to simulate login behavior, and use chromium hardless mode.

so you need to install chromium first.

npx playwright install chromium

Uages

npm install chatgpt-token
// cjs
const {chatgptToken} = require("chatgpt-token")
// mjs
import {chatgptToken} from "chatgpt-token/module"

(async function(){
  const token = await chatgptToken('username','password')
  if (!token) {
    console.log("error")
  } else {
    console.log(token)
  }
})()

HTTP API Server

I also write a http server to do this thing, and it has a docker image to easily deploy. Here is:

Package Sidebar

Install

npm i chatgpt-token

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

5.95 kB

Total Files

7

Last publish

Collaborators

  • mereith