IdentityCredentialsProvider如何获取参

IdentityCredentialsProvider如何获取参

本文介绍了AWSWebIdentityCredentialsProvider如何获取参数值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

想使用下面的code做认证,

Am trying to use the below code to do authentication,

但我无法得到需要传递到下面的参数值, providerId,roleArn,roleSessionName。

But i am unable to get the values needs to be passed to following parameters,providerId, roleArn, roleSessionName.

不过,webIdentityToken价值,我必须从本地服务器接收它。

However, webIdentityToken value i will receive it from our local server.

AWSWebIdentityCredentialsProvider *provideer = [AWSWebIdentityCredentialsProvider credentialsWithRegionType:AWSRegionUSEast1 providerId:@"" roleArn:@"" roleSessionName:"" webIdentityToken:@""];

问候,巴特

Regards,Bhat

推荐答案

我已创建自定义凭据提供与亚马逊的认证机制完美的作品:)。我按照相同的静态凭据提供的步骤。

I have created custom credential provider and amazon authentication mechanism works flawlessly :) .I have followed the steps same as that of Static Credential provider.

这篇关于AWSWebIdentityCredentialsProvider如何获取参数值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 14:05