由于令牌将在一小时内过期而我们需要获取新令牌,我想知道将再次分配cumstomIdentityProvider类,或者thers是另一个这样做的人。需要帮助。
这是我在My cumstomIdentityProvider中实现的。
- (AWSTask *)refresh {
/*
* Get the identityId and token by making a call to your backend
*/
// Call to your backend
// Set the identity id and token
self.identityId = IdentityId;
self.token = Token;
return [AWSTask taskWithResult:self.identityId];
}