即使在邮递员

时间:2018-06-12 14:13:21

标签: php json api jwt token

我正在使用JWT构建一个小API,在我用客户端ID密钥将客户端ID密钥发送到客户端ID后,我在API中创建了我的令牌后,我尝试将该令牌恢复成功创建令牌,但我得到响应未找到访问令牌这是我设置为响应的,如果它无法在我创建的常量中找到令牌,这是在constant.php中,请问什么我做错了,我试图编辑我的源代码上的代码,但没有。如果我的帖子需要更正,请欣赏编辑。

 api.php //where I generate my token and create_insert_new_delivery() is the function that checks the incoming parameter for adding a new delivery according to the API i am building

public function generateToken(){ //WORKS PERFECTLY, BUT WHEN I TRY TO GET THE TOKEN
    try {
    $client_id_key = $this->validateParameter('client_id_key', $this->param['client_id_key'], STRING);
    //$client_secret_key = $this->validateParameter('client_secret_key', $this->param['client_secret_key'], STRING);
    //client_secret_key should be commented out it is not used for validation for security purposes, only id key

    $stmt = $this->dbConn->prepare("SELECT * FROM `api_clients_properties` WHERE client_id = :client_id_key");
    $stmt->bindParam(":client_id_key", $client_id_key);
    $stmt->execute();
    $user = $stmt->fetch(PDO::FETCH_ASSOC);
    if (!is_array($user)){
        $this->returnResponse(API_NAME_REQUIRED, "Invalid Client Id Key");
    }

    if ($user['property_status'] == "not verified"){
       $this->returnResponse(API_NAME_REQUIRED, "Property not verified, please contact admin, to verify it");   
    }

    $payload = [
       'iat' => time(),
       'iss' => 'localhost',
       'exp' => time() + (60),
       'userId' => $user['id']
    ];

    $token = JWT::encode($payload, SECRETE_KEY);

    $data = ['token' => $token];
    $this->returnResponse(SUCCESS_RESPONSE, $data);
} catch (Exception $e){
    $this->throwError(JWT_PROCESSING_ERROR, $e->getMessage());
}
}


public function create_insert_new_delivery(){
$c_payment_type = $this->validateParameter('payment_type', $this->param['payment_type'], STRING, true);

$c_date_of_delivery = $this->validateParameter('date_of_delivery', $this->param['date_of_delivery'], STRING, true);

$c_country_from = $this->validateParameter('country_from', $this->param['country_from'], STRING, true);
}

try {
      echo $token = $this->getBearerToken(); //Trying to get this token out, but its empty what am i doing wrong.



  } catch (Exception $e){
      $this->throwError(ACCESS_TOKEN_ERRORS, $e->getMessage()); //THIS "ACCESS_TOKEN_ERRORS" gives undefined token 
  }

}



 //constants.php the constant to serve errors
   /*Server Errors*/
define('JWT_PROCESSING_ERROR',                 300);  
define('AUTHORIZATION_HEADER_NOT_FOUND',       301);
define('ACCESS_TOKEN_ERRORS',                 302);

1 个答案:

答案 0 :(得分:2)

对于将来可能遇到此问题的人,请确保作为持有人的授权值之间的空间准确无误,他们之间只有一个空格,例如 Bearer YOUR.TOKEN.HERE {{ <}}}你可以像我在我的问题中所做的那样回应你的令牌,你将获得所需的令牌。