1.0.4 • Published 2 years ago

re-auth-api v1.0.4

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

Re-Auth-API

The API Wrapper for the Re-Auth API.

IMPORTANT

Re-Auth has been shut down. This package will no longer work. You can read more on our homepage.

But wait... What is re-auth?

A modern authentication system. Read more on our homepage.

Installation

To install, type this command in your console:

npm i re-auth-api

To create a new app, navigate to the Website, login/register, go to settings, enable Developer, go to Applications and create a new one. Copy the ID and the token. Then, you can setup Re-Auth like this:

const reAuth = require("re-auth-api");
let client = new reAuth()
  .setID(id)
  .setToken(token);

//wrapper for await
(async () => {
  console.log(await client.getUser("<obtained secret>")); //if returned "Authorized!", you did everything right.
})()

To get informations about a certain application, you can use:

console.log(await new reAuth().getInfos("<applicationID>"))

If you like, you can check our API Documentation.

To get the secret, use: https://auth.redcrafter07.de/auth/<YOUR ID> Deny: redirect to your homepage URI Accept: redirect to the redirectURI with ?secret=your secret

License

MIT

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago