我正在尝试将我的应用连接到Amazon S3并从存储桶中检索文件,但我遇到了一些错误。
let credentialsProvider = AWSCognitoCredentialsProvider.credentialsWithRegionType(AWSRegionType.EUWest1,identityPoolId: CognitoIdentityPoolId ,unauthRoleArn: unRoleArn, authRoleArn: RoleArn, accoundId: ID )
这是给我一个错误的代码“类型'AWSCognitoCredentialsProvider'没有成员'CredentialsWithRegionType'”希望有些人可以对我一直在做的事情有所了解,因为此刻我不知道是不是在我的代码中的一些东西或我没有用我的Podfile安装正确的东西。
由于
答案 0 :(得分:0)
有一种新的,更简单的方法可以在swift中提供凭据。试试这个,看看它是否修复了你的错误:
let credentialsProvider = AWSCognitoCredentialsProvider(regionType: .USEast1, identityPoolId: cognitoIdentityPoolId)