New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

passport-minecraft

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

passport-minecraft

Passport strategy for Minecraft Authentication through Microsoft

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

passport-minecraft

NPM

Passport strategy for authenticating with Xbox Live and get Minecraft Account information

Installation

$ npm install passport-minecraft

Basic Usage

const MinecraftStrategy = require("passport-minecraft").Strategy;

passport.use(
  new MinecraftStrategy(
    {
      clientID: "client-id",
      clientSecret: "secret",
      callbackURL: "http://localhost:3000/auth/minecraft/callback",
      scope: "Xboxlive.signin",
    },

    function (accessToken, refreshToken, profile, done) {
      User.findOne({ identifier }, function (err, user) {
        return done(err, user);
      });
    }
  )
);

You can create a Microsoft App through Azure App Registrations. Creating the client secret is an extra step.

Once you've registered an App, go to Certificates & Secrets and create a secret. The value column contains the secret.

Authenticate Requests

Use passport.authenticate(), specifying the 'minecraft' strategy, to authenticate requests.

For example, as route middleware in an Express application:

app
  .get("/auth/minecraft", passport.authenticate("minecraft"))
  .get(
    "/auth/minecraft/callback",
    passport.authenticate("minecraft", { failureRedirect: "/login" }),
    function (req, res) {
      res.json(req.user);
    }
  );

Keywords

minecraft

FAQs

Package last updated on 03 Sep 2022

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