1.0.14 • Published 2 months ago

simple-strapi-auth v1.0.14

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

Strapi plugin simple-strapi-auth

npm.io

Working on Strapi version: v4..

First Setup

  1. Install as an npm dependency
# install dependencies
npm install simple-strapi-auth
  1. Check the below api's to generate token and refresh token
# Access token generation CURL

curl --location 'http://localhost:1337/simple-auth/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic bXlDbGllbnRJZDpteUNsaWVudFNlY3JldA==' \
--data-urlencode 'grant_type=client_credentials'

# Refresh Token generation Curl

curl --location 'http://localhost:1337/simple-auth/refresh-token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer b323177e47a266abc2d5d9cd42c08dcccdb9e365' \
--data-urlencode 'grant_type=refresh_token' \
--data-urlencode 'client_id=myClientId1' \
--data-urlencode 'client_secret=myClientSecret' \
--data-urlencode 'refresh_token=b323177e47a266abc2d5d9cd42c08dcccdb9e365'

Note

  • Please replace appropriate token and Basic auth values to generate access token.

Features

  • Currently only designed to prevent unauthorized access to strapi public apis
  • Works entirely on the principle of OAuth Client Credentials.

References

1.0.14

2 months ago

1.0.11

2 months ago

1.0.13

2 months ago

1.0.12

2 months ago

1.0.10

3 months ago

1.0.9

3 months ago

1.0.8

3 months ago

1.0.7

4 months ago

1.0.6

4 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago