Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/herrmannplatz/axios-keycloak

🔑 Keycloak client with build in axios functionality
https://github.com/herrmannplatz/axios-keycloak

axios keycloak

Last synced: about 2 months ago
JSON representation

🔑 Keycloak client with build in axios functionality

Awesome Lists containing this project

README

        

# axios-keycloak [![npm version](https://badge.fury.io/js/axios-keycloak.svg)](https://badge.fury.io/js/axios-keycloak) [![Build Status](https://travis-ci.org/herrmannplatz/axios-keycloak.svg?branch=master)](https://travis-ci.org/herrmannplatz/axios-keycloak)

> Keycloak client with build in axios functionality, letting you create axios instances for doing authenticated request. The module is dealing with the token refresh for you.

## Usage

```javascript
import AxiosKeycloak from 'axios-keycloak'

...

const kc = new AxiosKeycloak()
const axiosInstance = kc.createAxiosInstance()

kc.init({ onLoad: 'login-required' })
.then(() => {
// authenticated request using keycloak access token
return axiosInstance.get('/user/12345')
})
.then((response) => {
// ...
}

// In case you want do an unauthenticated request
const axios = AxiosKeycloak.axios

```