Skip to content

Commit

Permalink
fix desc
Browse files Browse the repository at this point in the history
  • Loading branch information
bessudnov committed Aug 27, 2024
1 parent fb6f58f commit 30de439
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions examples/get_account_subdomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@

try {
/**
* В случае потери/смены субдомена аккаунта, мы можем его получить с помощью refresh_token
* api_domain - Claim из access_token
* Сделав запрос на {api_domain}.amocrm.ru/oauth2/account/current/subdomain
* В случае потери/смены субдомена аккаунта, мы можем его получить с помощью активного refresh_token.
*
* Получим модель с информацией о домене аккаунта по refresh_token
* Получить субдомен можно сделав запрос на {api_domain}.amocrm.ru/oauth2/account/current/subdomain.
* Получить api_domain можно распарсив JWT access_token и взять его из claim api_domain
*
* В данном примере получим модель с информацией о домене аккаунта по refresh_token
* Подробнее: @see AccountDomainModel
*
* Запрос уходит на {api_domain}.amocrm.ru/oauth2/account/current/subdomain
* С X-Refresh-Token: {refresh_token}
* С заголовком X-Refresh-Token: {refresh_token}
*
* @example curl 'https://api-a.amocrm.ru/oauth2/account/current/subdomain' -H 'X-Refresh-Token: {refresh_token}'
* @example curl 'https://api-a.amocrm.ru/oauth2/account/current/subdomain' -H 'X-Refresh-Token: XXX'
*/
$accountDomainModel = $apiClient->getOAuthClient()
->getAccountDomainByRefreshToken($accessToken);
Expand Down

0 comments on commit 30de439

Please sign in to comment.