Socket
Book a DemoInstallSign in
Socket

auth_mojang.js

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth_mojang.js

a Mojang api authenticate tool

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
2
Created
Source

Require

require a Node.JS v12 or newest.

require an async function.

require your project.

Install and Import

how to install

npm i auth_mojang.js

import

const mauth = require('auth_mojang.js');

or

const { login } = require('auth_mojang.js');

Info

//import

mauth.info

it returns an array.

//import

const info = mauth.info;
console.log(info[0]); //Node.JS version
console.log(info[1]); //Module version
console.log(info[2]); //Module kewords(more array)

Login

//import

mauth.login('Minecraft', 1, 'username', 'password');

How i get username and uuid using 'login' function?

//import

async function login(agname, agver, usrn, pswd) {
    const res = await mauth.login(agname);
    if (res.error) {
        console.error(res.errorMessage);
        return;
    }
    //handle error
    if (!res.selectedProfile) return;
    //if player have'nt Minecraft: Java Edition, return with null.
    const profile = res.selectedProfile;
    console.log(profile.name, profile.id);
    //username and uuid
}
login('Minecraft', 1, 'username', 'password');

Refresh

You can verify AccessToken using this method. and it invalidates accessToken

Q. What is 'AccessToken' ?

A. AccessToken is a randomly generated string!

Q. How i get 'AccessToken' ?

A. You can get using 'login' method!

use

res.accessToken

!

//import

//login method, function name is login

async function refresh(accessToken, clientToken) {
    console.log(await mauth.refresh(accessToken, clientToken));
}

async function caller() {
    const res = await login('Minecraft', 1, 'usrname', 'pword');
    refresh(res.accessToken, res.clientToken);
}
//it returns an json

caller();

Validate

It verifys your accessToken! ...and none invalidate!

//import

//login method

async function validate(accessToken, clientToken) {
    if (await mauth.validate(accessToken, clientToken)) {
        console.log('valid');
    } else {
        console.log('invalid');
    }
}

async function caller() {
    res = await mauth.login('...');
    validate(res.accessToken, res.clientToken);
}
caller();

Signout

'Signout' method is invalidates your accessToken using username and password.

//import

mauth.signout('username', 'password');
//if successfully signouted, return true
Wanna support?

Discord

Keywords

auth

FAQs

Package last updated on 02 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.