nabadao / ci-rest-jwt

Codeigniter REST API using JWT for Authentication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeIgniter Rest Server With JWT Authentication

A fully RESTful server implementation for CodeIgniter using JWT for Authentication

Notes

  • Import Database from /db/rest_jwt.db

  • Test it with postman/insomnia

  • Create post method from postman for user authentication "http://localhost/ci-rest-jwt/api/auth/login"

  • Add this to body multipart form :

    username = dodi

    password = dodi123

  • If your authentication success you will get generated token response

  • To test it, go Create post method from postman "http://localhost/ci-rest-jwt/api/main/test" and then you can attach that generated token you've got to the header authentication bearer token. see example bellow :

    Authentication: Bearer "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6IjIiLCJ1c2VybmFtZSI6ImRvZGk"

Refference

This project Using REST by Phil Sturgeon and Firebase/PHP-JWT. For more information :

REST

https://github.com/chriskacerguis/codeigniter-restserver

JWT

https://github.com/firebase/php-jwt

About

Codeigniter REST API using JWT for Authentication

License:MIT License


Languages

Language:PHP 99.6%Language:HTML 0.4%