由于令牌将在一小时内过期并且我们需要获取新令牌,我想知道将再次分配 cumstomIdentityProvider 类,否则就是这样做的另一种方法。需要帮忙。
这是我在我的 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];
}