1.1.0 • Published 4 years ago

fnn-captcha v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

fnn-captcha

Solve captcha with a browser! (Used to get rid of the captcha error for epic games's login endpoints.)

Example

const fnnCAPTCHA = require('fnn-captcha');

(async () => {
    const token = await fnnCAPTCHA();
});

The token will be the captcha property in your login endpoint.

epicgames-client

const { Launcher } = require('epicgames-client');
const fnnCAPTCHA = require('fnn-captcha');

(async () => {
    const token = await fnnCAPTCHA();
    const launcher = new Launcher({
          email: '',
          password: '',
          captcha: function() { return token }
    });
    // epicgames-client's setup.
});

fortnitenode

Coming very soon.

Installing

npm install fnn-captcha
1.1.0

4 years ago

1.0.0

4 years ago