5

Ich folge Amazon Dokumentation, aber es funktioniert nicht wie angekündigt. Ich habe auch die neueste SDK. Der self.identity = Code funktioniert nicht, da er schreibgeschützt ist.Verwenden von Amazon Cognito Developer Identitäten

@implementation DeveloperAuthenticatedIdentityProvider 
/* 
* Use the token method to communicate with your backend to get an 
* identityId and token. 
*/ 

- (AWSTask <NSString*>) token { 
    //Write code to call your backend: 
    //Pass username/password to backend or some sort of token to authenticate user 
    //If successful, from backend call getOpenIdTokenForDeveloperIdentity with logins map 
    //containing "your.provider.name":"enduser.username" 
    //Return the identity id and token to client 
    //You can use AWSTaskCompletionSource to do this asynchronously 

    // Set the identity id and return the token 
    self.identityId = response.identityId; 
    return [AWSTask taskWithResult:response.token]; 
} 

@end 

Wie überschreibe ich das? Vielen Dank.

Antwort

Verwandte Themen