PHP code example of secureid / secureidsdk
1. Go to this page and download the library: Download secureid/secureidsdk library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
secureid / secureidsdk example snippets bash
$response = $secureidsdk->getAll();
bash
$id = 'exemple-id' ;
$response = $secureidsdk->getById($id);
bash
$id = 'exemple-id' ;
$data = [
'title' => 'Updated Title' ,
'username' => 'updated_username' ,
'password' => 'updated_password' ,
];
$response = $secureidsdk->update($id, $data);
bash
$id = 'exemple-id' ;
$response = $secureidsdk->delete($id);
bash
namespace App \Http \Controllers ;
use Illuminate \Http \Request ;
use Secureid \Secureidsdk \SecureID ;
class SecureIDSDKController extends Controller
{
public function readAll (SecureID $secureidsdk) {
$response = $secureidsdk->getAll();
return $response;
}
public function readOne (SecureID $secureidsdk, string $id) {
$response = $secureidsdk->getById($id);
return $response;
}
public function create (SecureID $secureidsdk) {
$data = [
'title' => 'Updated Title' ,
'username' => 'updated_username' ,
'password' => 'updated_password' ,
];
$response = $secureidsdk->create($data);
return $response;
}
public function update (SecureID $secureidsdk, string $id) {
$data = [
'title' => 'Updated Title' ,
'username' => 'updated_username' ,
'password' => 'updated_password' ,
'website' => 'updated_website' ,
];
$response = $secureidsdk->update($id, $data);
return $response;
}
public function delete (SecureID $secureidsdk, string $id) {
$response = $secureidsdk->delete($id);
return $response;
}
}