0.0.1 • Published 3 years ago
chatgpt-token v0.0.1
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:
0.0.1
3 years ago