5

私はamazonの文書に従っていますが、広告としては動作しません。私も最新のSDKを持っています。 self.identity =以下のコードは読み取り専用なので動作しません。Amazon CognitoデベロッパーIDを使用

@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 

どうすればいいですか?ありがとう。コンパイラによって示唆されているように

答えて

関連する問題