Welcome Guest, Not a member yet? Register   Sign In
Create JWT Auth in CodeIgniter 4
#1

Is there a library or a way to create JWT authorization in CodeIgniter 4?
Reply
#2

(This post was last modified: 01-30-2020, 10:23 AM by mintwint.)

(01-24-2020, 12:27 PM)Hyd3r1 Wrote: Is there a library or a way to create JWT authorization in CodeIgniter 4?

Sure!

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

This works great in my project CI4.
Reply
#3

(01-24-2020, 12:27 PM)Hyd3r1 Wrote: Is there a library or a way to create JWT authorization in CodeIgniter 4?

Yes, I'm also using jwt authorization.

First, download php files from php-jwt.

Second, place BeforeValidException.php, ExpiredException.php, JWT.php, SignatureInvalidException.php under /app/ThirdParty/Firebase/JWT

Third, add 'Firebase'   => APPPATH . 'ThirdParty/Firebase', to psr4 variable inside of /app/Config/Autoload.php

Now you can load JWT library with : use Firebase\JWT\JWT;

Additionally, I wanted to make something like JwtMiddleWare in Node.js, so I made custom filter and add the following code in before function.

Code:
$decoded = JWT::decode(...);
$request->user = new \stdClass();
$request->user = $decoded;
return $request;

Maybe I'm doing something wrong, but so far, it works correctly.
Reply
#4

We are developing JWT Authenticator for CodeIgniter Shield.
https://github.com/codeigniter4/shield/pull/195
Reply
#5

This guy did a good job.
https://github.com/agungsugiarto/codeign...cation-jwt
Reply
#6

(This post was last modified: 04-18-2023, 10:19 PM by kenjis.)

We are developing JWT Authenticator for Shield.
See https://github.com/codeigniter4/shield/pull/195

I believe that is very close to completion.
Reply
#7

@kenjis, Thank you very much.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#8

I use JWT with firebase alot https://github.com/firebase/php-jwt in ps4 and it works fine but if you do a module for that ok that looks great news
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply
#9

(04-18-2023, 10:17 PM)kenjis Wrote: We are developing JWT Authenticator for Shield.
See https://github.com/codeigniter4/shield/pull/195

I believe that is very close to completion.

Good news! Does the latest version of CodeIgniter Shield finally have a 'groups' table that is joinable via a group_id from the 'users' table?

CodeIgniter Wizard (CRUD code generator for Mac) instantly scaffolds Bootstrap-based web applications with an administrative interface (admin templates include Bootstrap5)

Reply
#10

What's the groups table? I've never heard such a request.

Shield has groups_users table from the beginning.
https://github.com/codeigniter4/shield/b...s.php#L129
Reply




Theme © iAndrew 2016 - Forum software by © MyBB