我正在尝试将大型文件从服务器上传到云存储(文件超过500mb),并且PHP超时。我尝试查看Google Client Library文档,并通过stackoverflow进行了爬网,但是找不到任何可以帮助我的东西。还可以跟踪上传进度吗?
这是我目前正在使用的代码:
class authenticationMock{ // is the mock of AuthenticationService
public usernameAnnounced:Subject<string> = new Subject<string>();
}
...
// in Test
let authenticationService = TestBed.get(AuthenticationService)
...
authenticationService.next('myNewUser');