No Description

AppIdentityService.php 361B

12345678910111213141516171819
  1. <?php
  2. namespace google\appengine\api\app_identity;
  3. class AppIdentityService
  4. {
  5. public static $scope;
  6. public static $accessToken = array(
  7. 'access_token' => 'xyz',
  8. 'expiration_time' => '2147483646',
  9. );
  10. public static function getAccessToken($scope)
  11. {
  12. self::$scope = $scope;
  13. return self::$accessToken;
  14. }
  15. }