fedyak / php-yc-iamtoken
IAM-token for a Yandex Cloud service account
1.1
2021-08-08 12:55 UTC
Requires
- php: ^7.4|^8.0
- ixudra/curl: 6.*
- phpseclib/phpseclib: ^2.0
This package is auto-updated.
Last update: 2025-03-08 21:00:07 UTC
README
Getting an IAM token for a Yandex Cloud service account
Install
composer require fedyak/php-yc-iamtoken
Example
// Service Account ID $service_account_id = '....'; // Service Account Key ID $key_id = '....'; $rsa_private_key = file_get_contents('private.pem'); $iam = new ServiceAccountIAMToken($service_account_id, $key_id, $rsa_private_key); //$jwt = $iam->getJWT(); //JSON Web Token $iam_token = $iam->getIAMToken();