Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

401 ошибка при обновлении токена по Refresh Token #575

Open
Sof7ik opened this issue Sep 26, 2024 · 0 comments
Open

Comments

@Sof7ik
Copy link

Sof7ik commented Sep 26, 2024

Токен сохраняю в amo-token.json

{
    "token_type": "Bearer",
    "access_token": "token_hash_dasda234jgdfkgdhfg",
    "refresh_token": "token_hash_fdfhmdfmklji54j654ngndfkmbhgdfgdfbgd",
    "expires": 1727192550
}

Написал в интеграции проверку на просроченный токен: если просрочен, то получаю новый через метод
getAccessTokenByRefreshToken(<объект_текущего_токена_из_json>).

Полный код:

$amoIntegration = new AmoIntegration();
$amoIntegration->initApiClient();
$apiClient = $amoIntegration->getApiClient();
$oAuth = $apiClient->getOAuthClient();

// получаем токен из json файла
$tokenData = $amoIntegration->getTokenFromFile();

// если токен существует
if (!empty($tokenData)) {
    // создаем объект AccessToken
    $currentToken = new AccessToken($tokenData);

    if ($currentToken->hasExpired()) {
        $responseToken = null;
	
        try {
            $responseToken = $oAuth->getAccessTokenByRefreshToken($currentToken);
	}
	catch (AmoCRMoAuthApiException $e) {
            // логирование
        }

        if (!empty($responseToken)) {
            $apiClient->setAccessToken($responseToken);
            $amoIntegration->saveTokenToFile();
        }
    }
}

Дальше методы из класса AmoIntegration

/**
* @description инициализирует клиент по id интеграции, секретному ключу и redirect uri
* @return void
*/
public function initApiClient():void {
    $this->apiClient = new AmoCRMApiClient($this->client_id, $this->client_secret, $this->redirect_uri);
    $this->apiClient->setAccountBaseDomain($this->base_domain); // хардкод <client_subdomain>.amocrm.ru
}

/**
* Сохраняет токен в JSON-файл
* @return bool
*/
public function saveTokenToFile(): bool {
    $tokenJson = json_encode($this->apiClient->getAccessToken(), JSON_PRETTY_PRINT);
    $bytes = file_put_contents($this->pathToJsonTokens, $tokenJson);
    
    return (bool) $bytes;
}

/**
* @description читает токен из JSON-файла
* @return array|null
*/
public function getTokenFromFile(): array|null {
    $tokensJson = file_get_contents($this->pathToJsonTokens);
    return json_decode($tokensJson, true);
}

В ответ на getAccessTokenByRefreshToken() приходит ошибка

{
    "title":"Некорректный клиент", 
    "type":"https://developers.amocrm.ru/v3/errors/OAuthProblemJson",
    "status":401,
    "detail":"Авторизация клиента не прошла"
}

Также читал про ошибку, когда и рефреш токен просрочен. Поэтому поставил задачу на cron, код прям буква в букву с "полным кодом", приведённом выше. На кроне тоже ошибка 401, такая же
Когда захожу в браузере на URL обработчика, то токен обновляется. Данные в интеграции я проверил - они верные

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant