telegra.ph
v1.0.1
Published
Tiny API helper for Telegra.ph
Readme
📝 telegra.ph
Tiny API helper for Telegra.ph.
API
Installation
$ npm install telegra.ph --saveExample
const Telegraph = require('telegra.ph')
const client = new Telegraph()
client.createAccount().then((account) => {
client.token = account.access_token
return client.getPageList()
}).then((pages) => console.log(pages))
const Telegraph = require('telegra.ph')
const client = new Telegraph(process.env.TOKEN)
client.getPageList().then((pages) => console.log(pages))
API documentation
createAccount
.createAccount(shortName, name, url)
createPage
.createPage(title, content, authorName, authorUrl, returnContent)
editAccountInfo
.editAccountInfo(shortName, name, url)
editPage
.editPage(path, title, content, authorName, authorUrl, returnContent)
getPage
.getPage(path, returnContent)
getViews
.getViews(path, year, month, day, hour)
getPageList
.getPageList(path, offset, limit)
revokeAccessToken
.revokeAccessToken()
