您必须getId
然后刷新凭据。首先做:
对象-C:
// Retrieve your Amazon Cognito ID
[[credentialsProvider getIdentityId] continueWithBlock:^id(AWSTask *task) {
if (task.error) {
NSLog(@"Error: %@", task.error);
}
else {
// the task result will contain the identity id
NSString *cognitoId = task.result;
}
return nil;
}];
迅速:
// Retrieve your Amazon Cognito ID
credentialsProvider.getIdentityId().continueWithBlock { (task: AWSTask!) -> AnyObject! in
if (task.error != nil) {
print("Error: " + task.error.localizedDescription)
}
else {
// the task result will contain the identity id
let cognitoId = task.result
}
return nil
}
然后刷新:
- (BFTask *)getIdentityId {
if (self.identityId) {
return [BFTask taskWithResult:self.identityid];
} else {
return [[BFTask taskWithResult:nil] continueWithBlock:^id(BFTask *task) {
if (!self.identityId) {
return [self refresh];
}
return [BFTask taskWithResult:self.identityid];
}];
}
}
- (BFTask *)refresh {
return [[BFTask taskWithResult:nil] continueWithBlock:^id(BFTask *task) {
// make a call to your backend, passing logins on provider
MyLoginResult *result = [MyLogin login:user password:password withLogins:self.logins];
// results should contain identityid and token, set them on the provider
self.token = result.token;
self.identityId = result.identityId;
// not required, but returning the identityId is useful
return [BFTask taskWithResult:self.identityid];
}];
}
从这里的文档