JWT(JSON Web Token) (Fifth Token) Creation with CURL and Expire Time in CodeIgniter 3

 <?php

defined("BASEPATH") or exit("No direct script access allowed");

use Firebase\JWT\JWT;
use Firebase\JWT\Key;

class RequestFive extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();
    }
    public function index()
    {
        $key = "Fifth_key";
        //Set the expiration time to 1 minute from the current time
        $issuedAt = time();
        $expirationTime = $issuedAt + 60;   //jwt valid for 1 minute from the issued time
        $payload = [
            "id" => 10,
            "name" => "Patel Yash Rameshbhai",
            "position" => "Software Developer",
            "Nationality" => "Indian",
            "Favourite game" => "Cricket",
            "address" => "Ranip, Ahmedabad",
            "email" => "patelyash8552@gmail.com",
            "Roll No" => 23,
            "Son Name" => "Vivek",
            "School Name" => "Devasya International School",
            "School Time" => "7 AM to 2 PM",
            "city" => "Ahmedabad",
            "pincode" => 372214,
            "iat" => $issuedAt,         // Issued at: time when the token was generated
            "nbf" => $issuedAt,         // Not before
            "exp" => $expirationTime    // Expiration time
        ];

        $jwt = JWT::encode($payload, $key, "HS256");

        $curl = curl_init();
        curl_setopt_array($curl, [
            CURLOPT_URL => 'http://localhost/blogApi/ApiFive/users',
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_ENCODING => '',
            CURLOPT_MAXREDIRS => 10,
            CURLOPT_TIMEOUT => 30,
            CURLOPT_SSL_VERIFYHOST => false,
            CURLOPT_SSL_VERIFYPEER => false,
            CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
            CURLOPT_CUSTOMREQUEST => 'GET',
            CURLOPT_HTTPHEADER => [
                'Accept: application/json',
                'Authorization: Bearer ' . $jwt,
            ],
        ]);

        $response = curl_exec($curl);

        curl_close($curl);

        print_r($response);
    }
}







DECODE DATA FILE
<?php
defined("BASEPATH") or exit("No direct script access allowed");

use chriskacerguis\RestServer\RestController;
use Firebase\JWT\JWT;
use Firebase\JWT\Key;

class ApiFive extends RestController
{
    public function __construct()
    {
        parent::__construct();
    }
    public function users_get()
    {
        $headers = apache_request_headers();

        $jwt = $headers["Authorization"];

        $jwt = str_replace("Bearer", "", $jwt);
        $jwt = trim($jwt);
        print_r($jwt);
        echo "<br><br><br>";

        try {
            $decoded = JWT::decode($jwt, new Key("Fifth_key", "HS256"));
            echo json_encode(array(
                "status" => "success",
                "data" => $decoded
            ));
            echo "<br><br><br>";
            echo "<pre>";
            $this->response($decoded);
        } catch (\Firebase\JWT\ExpiredException $e) {
            echo json_encode(array(
                "status" => "Error",
                "message" => "Token is Expired"
            ));
        } catch (Exception $e) {
            echo json_encode(array(
                "status" => "Error",
                "message" => $e->getMessage()
            ));
            print_r($e->getMessage());
            exit();
        }
    }
}

Comments