How to use the cozy-client-js.auth function in cozy-client-js

To help you get started, we’ve selected a few cozy-client-js examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cozy / cozy.github.io / en / ach / libs / getClient.js View on Github external
const cozy = require('cozy-client-js')
const appPackage = require('../package.json')
const fs = require('fs')
const { addUtilityMethods } = require('./cozy-client-mixin')
const path = require('path')
const AppToken = cozy.auth.AppToken
const log = require('./log')
const { ChainedError } = require('./errors')
const jwt = require('jsonwebtoken')
const CLIENT_NAME = appPackage.name.toUpperCase()
const SOFTWARE_ID = CLIENT_NAME + '-' + appPackage.version

const enableDestroy = require('server-destroy')

const exported = {}

const revokeACHClients = (cozyClient, options) => {
  const { exclude } = options
  return cozyClient.settings.getClients().then(oAuthClients => {
    const revocations = oAuthClients
      .filter(
        oAuthClient =>

cozy-client-js

Javascript library to interact with a cozy

MIT
Latest version published 9 months ago

Package Health Score

53 / 100
Full package analysis