日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

NotifyContentFormat

更新時(shí)間:

NotifyContentFormat用于指定SMQ向Endpoint推送消息時(shí),消息內(nèi)容的格式。

  • XML

    • 消息體為XML格式,包含消息正文和消息屬性。

    • HttpEndpoint和QueueEndpoint支持該格式。

    • 消息示例:

      <?xml version="1.0" encoding="utf-8"?>
          <Notification xlmns="http://mns.aliyuncs.com/doc/v1/">
              <TopicOwner>TopicOwner</TopicOwner>
              <TopicName>TopicName</TopicName>
              <Subscriber>Subscriber</Subscriber>
              <SubscriptionName>SubscriptionName</SubscriptionName>
              <MessageId>6CC4D900CA59A2CD-1-15180534A8F-20000****</MessageId>
              <Message>{1:"a", 2:"b"}</Message>
              <MessageMD5>F1E92841751D795AB325861034B5****</MessageMD5>
              <MessageTag>important</MessageTag>
              <PublishTime>1449556920975</MessagePublishTime>
          </Notification>
  • JSON

    • 消息體為JSON格式,包含消息正文和消息屬性。

    • HttpEndpoint和QueueEndpoint支持該格式。

    • 消息示例:

      {
          "TopicOwner":"TopicOwner",
          "TopicName":"TopicName",
          "Subscriber":"Subscriber",
          "SubscriptionName":"SubscriptionName",
          "MessageId":"6CC4D900CA59A2CD-1-15180534A8F-20000****",
          "Message":"xxxxx",
          "MessageMD5":"F1E92841751D795AB325861034B5****",
          "MessageTag":"important",
          "PublishTime":"1449556920975"
      }
  • SIMPLIFIED

    • 消息體即用戶發(fā)布的消息,不包含任何屬性信息。

    • HttpEndpoint、QueueEndpoint和MailEndpoint均支持該格式。

    • 消息體示例:

      {1:"a", 2:"b"}