ez-pro/core/bitrix/modules/rest/lib/authproviderinterface.php
2025-11-13 19:04:05 +03:00

16 lines
284 B
PHP

<?php
/**
* Created by PhpStorm.
* User: sigurd
* Date: 19.02.18
* Time: 16:33
*/
namespace Bitrix\Rest;
interface AuthProviderInterface
{
public function authorizeClient($clientId, $userId, $state = '');
public function get($clientId, $scope, $additionalParams, $userId);
}