githubauthreq

Authorise GitHub API requests with the appropriate environment variables

githubauthreq has been renamed to @bevry/github-api: npm uninstall 'githubauthreq' && npm install '@bevry/github-api' && open 'https://www.npmjs.com/package/@bevry/github-api'
Last updated 4 years ago by bevryme .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install githubauthreq 
SYNC missed versions from official npm registry.

githubauthreq

Travis CI Build Status NPM version NPM downloads Dependency Status Dev Dependency Status
GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Authorise GitHub API requests with the appropriate environment variables

Usage

Complete API Documentation.

Fetch

Header

Using environment variables:

import { getHeaders } from 'githubauthreq'
fetch('https://api.github.com/user', {
    headers: getHeaders(),
})
import { getAuthHeader } from 'githubauthreq'
fetch('https://api.github.com/user', {
    headers: {
        Authorization: getAuthHeader(),
        Accept: 'application/vnd.github.v3+json',
    },
})

Query String

Using environment variables:

import { getParams } from 'githubauthreq'
fetch(`https://api.github.com/user?${getParams()}`, {
    headers: {
        Accept: 'application/vnd.github.v3+json',
    },
})

Manual

getHeaders, getAuthHeader, getParams accept an object containing either:

  • GITHUB_ACCESS_TOKEN
  • GITHUB_CLIENT_ID + GITHUB_CLIENT_SECRET

By default they will use process.env if it exists

Redaction

When using query string, you should redact the error message to prevent credentials from leaking in log files:

import { getParams, redactParams } from 'githubauthreq'
fetch(`https://api.github.com/user?${getParams()}`, {
    headers: {
        Accept: 'application/vnd.github.v3+json',
    },
}).catch((err) => console.error(redactParams(err.message)))

Install

npm

  • Install: npm install --save githubauthreq
  • Import: import pkg from ('githubauthreq')
  • Require: const pkg = require('githubauthreq').default

pika

<script type="module">
    import pkg from '//cdn.pika.dev/githubauthreq/^5.10.0'
</script>

unpkg

<script type="module">
    import pkg from '//unpkg.com/githubauthreq@^5.10.0'
</script>

jspm

<script type="module">
    import pkg from '//dev.jspm.io/githubauthreq@5.10.0'
</script>

Editions

This package is published with the following editions:

History

Discover the release history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Unless stated otherwise all works are:

and licensed under:

Current Tags

70 Versions

Maintainers (1)
Downloads
Total 0
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dependents (2)

© 2010 - cnpmjs.org x YWFE | Home | YWFE