AipSignOption.php 349 B

1234567891011121314151617
  1. <?php
  2. namespace common\helpers\ocr\baidu\lib;
  3. class AipSignOption
  4. {
  5. const EXPIRATION_IN_SECONDS = 'expirationInSeconds';
  6. const HEADERS_TO_SIGN = 'headersToSign';
  7. const TIMESTAMP = 'timestamp';
  8. const DEFAULT_EXPIRATION_IN_SECONDS = 1800;
  9. const MIN_EXPIRATION_IN_SECONDS = 300;
  10. const MAX_EXPIRATION_IN_SECONDS = 129600;
  11. }