Как мне получить значение jwt, strapi? - PullRequest
0 голосов
/ 18 марта 2020

Мне нужна помощь, я использую страпы в моей базе данных, но я не знаю, как войти через jwt. Я знаю, что для успешного или неудачного входа в систему мне нужен jwt, как мне получить его значение? Кто-нибудь может мне помочь?

          require 'util-debug.php';
          require 'api-links.php';
          // A sample PHP Script to POST data using cURL
          // Data in JSON format
if (isset($_POST['signip-submit'])){
    $post = array('email'=>$_POST['username'],'password'=>$_POST['pass']); // Array of data with a trigger
   // echo $_POST['username'];   
    $JWT="I_WANT_TO_KNOW_THE_VALUE_OF_JWT_THIS";
    header('Content-Type: application/json'); // Specify the type of data
    $ch = curl_init($LOGIN); // Initialise cURL
    $post = json_encode($post); // Encode the data array into a JSON string
    $authorization = "Authorization: Bearer ".$JWT; // Prepare the authorisation token
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json' , $authorization )); // Inject the token into the header
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, 1); // Specify the request method as POST
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post); // Set the posted fields
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // This will follow any redirects
    $result = curl_exec($ch); // Execute the cURL statement
    echo $result;
     // Close the cURL connection

   json_decode($result); // Return the received data
   curl_close($ch);
   //Application Key
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...