我正在使用AWS SNS服務將警報消息發送給用戶phone.However用戶取消訂閱該主題仍然他從該主題獲取消息。停止獲取消息用戶發送消息STOP .Following用於創建和訂閱主題的代碼片段。AWS SNS服務SMS取消訂閱
CreateTopicRequest createTopicRequest = new CreateTopicRequest(topicName);
CreateTopicResult createTopicResult = snsClient.createTopic(createTopicRequest);
//Topic display name
SetTopicAttributesRequest setTopicAttributesRequest = new SetTopicAttributesRequest();
setTopicAttributesRequest.withTopicArn(createTopicResult.getTopicArn());
setTopicAttributesRequest.setAttributeName(topicAttributeName);
setTopicAttributesRequest.setAttributeValue(topicAttributeValue);
snsClient.setTopicAttributes(setTopicAttributesRequest);
SubscribeRequest subRequest = new SubscribeRequest(createTopicResult.getTopicArn(), "sms","12712438216");
snsClient.subscribe(subRequest);
添加完整的詳細信息和相關代碼.. –
@SaketMittal添加的代碼片斷 – Niks