OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
auth
/
tests
/
mocks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:16 AM
rwxr-xr-x
📄
AppIdentityService.php
817 bytes
08/12/2024 10:33:45 AM
rw-r--r--
📄
TestFileCacheItemPool.php
5.09 KB
08/12/2024 10:33:45 AM
rw-r--r--
📄
test_file_cache_separate_process.php
1.11 KB
08/12/2024 10:33:45 AM
rw-r--r--
Editing: AppIdentityService.php
Close
<?php namespace google\appengine\api\app_identity; class AppIdentityService { public static $scope; public static $accessToken = [ 'access_token' => 'xyz', 'expiration_time' => '2147483646', ]; public static $serviceAccountName; public static $applicationId; public static function getAccessToken($scope) { self::$scope = $scope; return self::$accessToken; } public static function signForApp($stringToSign) { return [ 'signature' => 'Signed: ' . $stringToSign ]; } public static function getServiceAccountName() { return self::$serviceAccountName; } public static function getApplicationId() { return self::$applicationId; } }