ich Code unten bin mit dem Gerät (Windows Phone) in AWS SNS als Endpunkt in der AnwendungFehler: Die Sicherheitstoken in der Anforderung enthalten ist ungültig - Windows Phone Mit AWS SNS
CognitoAWSCredentials cognitoProvider = new CognitoAWSCredentials(UserId,
IdentitypoolID,
UnAuthRoleARN,
AuthRoleARN,
Region);
AmazonSimpleNotificationServiceClient sns = new AmazonSimpleNotificationServiceClient(cognitoProvider.GetCredentials().AccessKey.ToString(),
cognitoProvider.GetCredentials().SecretKey.ToString(), REgion); //provide credentials here
var channelOperation = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
CreatePlatformEndpointRequest epReq = new CreatePlatformEndpointRequest();
epReq.PlatformApplicationArn = ApplicationArn;
epReq.Token = channelOperation.Uri.ToString();
CreatePlatformEndpointResponse epRes = await sns.CreatePlatformEndpointAsync(epReq);
CreateTopicRequest tpReq = new CreateTopicRequest();
SubscribeResponse subsResp = await sns.SubscribeAsync(new SubscribeRequest()
{
TopicArn = TopicArn,
Protocol = "application",
Endpoint = epRes.EndpointArn
});
Während registrieren erstellen sie einen Endpunkt es einen Fehler die Sicherheits-Token in der Anforderung ist ungültig enthalten wirft, während unten Code ausführen
CreatePlatformEndpointResponse epRes = await sns.CreatePlatformEndpointAsync(epReq);
Bitte helfen sie mir, dies zu erreichen. Vielen Dank im Voraus