npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

opskins-auth

v1.1.1

Published

basic opskins authentication wrapper

Downloads

15

Readme

opskins-auth

REFERENCE DIAGRAM: https://opskins.com/images/oauth-guide-v1.png

const Auth = require('opskins-auth')
const auth = Auth('OPSKINS_API_KEY')

auth
  .createClient({
    name: 'Some Website',
    redirect_uri: 'https://auth.somewebsite.com',
  })
  .then(resp => {
    // do somthing
  })
  .catch(console.error)

IOAuth API Methods

createClient({ [name], [redirect_uri] }, [can_keep_secret])

Create a new OAuth client.

Returns OAuth client object and secret.

Required Object

  • name - Name for this client, to be displayed to users when they are prompted to approve access
  • redirect_uri - URI to which users are redirected after approving or denying access

Optional Arguments

  • can_keep_secret - Set this to 0 if your client cannot keep a secret and will maintain per-token secrets (see OAuth documentation). Default 1
auth
  .createClient(
    {
      name: 'Some Website',
      redirect_uri: 'https://auth.somewebsite.com',
    },
    true
  )
  .then(({ secret, client }) => {
    // do somthing...
  })

deleteClient([client_id])

Delete an OAuth client that you own, and invalidate all of its tokens.

Returns 200 response.

Required Arguments

  • client_id - Hexadecimal client_id of the client you want to delete
auth.deleteClient('some_client_id')

getOwnedClientList()

Get a list of all OAuth clients owned by the authenticated user.

Returns list of OAuth client objects.

auth.getOwnedClientList().then(clients => {
  // do somthing
})

resetClientSecret([client_id])

Reset the secret for a secret-bearing OAuth client that you own. If you use this, a new secret will be generated and the old one will no longer work.

Does not work if the client_id you pass does not keep a secret.

Returns OAuth client object with secret.

Required Arguments

  • client_id - Hexadecimal client_id of the client you want to delete
auth.resetClientSecret('some_client_id').then(({ secret, client }) => {
  // do somthing...
})

updateClient([client_id], { [name], [redirect_uri] })

Update an OAuth client that you own. At least one of name and redirect_uri is required.

Returns OAuth client object.

Required Arguments

  • client_id - Hexadecimal client_id of the client you want to delete

Optional Object

  • name - Name for this client, to be displayed to users when they are prompted to approve access
  • redirect_uri - URI to which users are redirected after approving or denying access
auth
  .updateClient('some_client_id', {
    name: 'Some Updated Website',
    redirect_uri: 'https://auth.someupdatedwebsite.com',
  })
  .then(client => {
    // do somthing...
  })

Oauth API Methods

accessToken([code])

Using a authorization code from the user authorization flow, you can exchange it for a bearer token.

Returns Token object.

Required Arguments

  • code - the authorization code you received in your return URL
auth.accessToken('some_client_code').then(token => {
  // do somthing...
})

refreshToken([refresh_token])

If you have a refresh token (i.e. you've already authorized the user in the past), you can use it to get a new bearer token.

Returns Token object.

Required Arguments

  • refresh_token - a refresh token
auth.refreshToken('some_client_token').then(token => {
  // do somthing...
})

revokeToken([token])

If you did not request permanent access to a user's account, then you don't need to do anything to "sign the user out". Their bearer token will automatically expire. If you requested permanent access and received a refresh token, then when you no longer need access to the user's account, you should revoke the refresh token.

Returns Token object.

Required Arguments

  • token - a user's token
auth.revokeToken('some_client_token').then(token => {
  // do somthing...
})

Responses

List of example responses for reference.

oauth-client

{
  "client_id": "ff371b045307",
  "name": "TestApp2",
  "redirect_uri": "http://localhost:1234",
  "time_created": 1535407757,
  "has_secret": true
}

token-resp

{
  "access_token": "AQAAAAQAAAAAAAVd4P////9Z3Sdf3C+GZhYgJzVwBLYfjo+n8LIAzj+JaAippILcmeX2e2o=",
  "token_type": "bearer",
  "expires_in": 1800,
  "scope": "identity items",
  "refresh_token": "6EnU6ZvGi5OoBcSpGs2V4PkcgfBgwr1V"
}