1.1.0 ā€¢ Published 2 years ago

tellonym.js v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Tellonym.js

šŸ•µļøā€ā™‚ļø Tellonym private api wrapper made in typescript

Token

To retrieve the token you have to sniff HTTP requests or get it from web localStorage. You can use this script on pc by pasting it in the console, or you can use the javascript: method even on mobile by:

ā€¢ Copying the script's content

ā€¢ Going on a javascript minifier website, such as https://minify-js.com/, and minifying it

ā€¢ Going on telloynm.me, tapping the search bar, writing javascript: and pasting the minified code

Example

const { Tellonym } = require('tellonym.js');

const tellonym = new Tellonym({
    //Optional, use it to recive some logs in the console
    debug: true, 
});

(async () => {
    await tellonym.login('token');
    
    tellonym.getFeedList()
        .then(console.log);
})();
1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago