共用方式為


取得平臺通知服務 (PNS) 意見反應

擷取 Azure 儲存體容器 URL。 容器有通知中樞的意見反應資料。 接著,呼叫端可以使用 Azure 儲存體服務 REST API 來擷取容器的內容。

要求

方法 要求 URI HTTP 版本
GET https://{namespace}.servicebus.windows.net/{Notification Hub}/feedbackcontainer?api-version=2015-01 HTTP/1.1

要求標頭

下表描述必要的和選用的要求標頭。

要求標頭 描述
Content-Type application/xml;type=entry;charset=utf-8
授權 使用 服務匯流排共用存取簽章驗證中所指定的 SAS 權杖。
x-ms-version 2015-01

要求本文

無。

回應

回應包括 HTTP 狀態碼和一組回應標頭。

回應碼

程式碼 描述
200 擷取容器 URL。
401 授權失敗。 存取金鑰不正確。
403 要求遭到拒絕,因為您的 SKU 未啟用功能。 升級至標準。

如需狀態碼的相關資訊,請參閱 狀態和錯誤碼

回應標頭

無。

回應本文

成功時,會傳回 Azure 儲存體容器 URL,並完成驗證權杖。

例如:

https://pushpnsfb5702abf7f71e31.blob.core.windows.net/00000000000297200840?sv=2014-02-14&sr=c&sig=XXxxxxxxxxxxxxx%xxxx%2xxxxxxxxxxxxxxxxxxxxxxxxxx%3D&se=2015-05-01T00%3A00%3A22Z&sp=rl

傳回的 URL 接著可用來流覽容器,並使用Azure 儲存體服務 REST API擷取內容

以下顯示範例 PNS 意見反應,指出與兩個不同的通知訊息識別碼相關聯的 WNS 過期通道:

<EnumerationResults ServiceEndpoint="---Removed---" ContainerName="00000000002001061088">
  <Blobs>
    <Blob>
      <Name>07272016</Name>
      <Properties>
        <Last-Modified>Wed, 27 Jul 2016 20:57:07 GMT</Last-Modified>
        <Etag>---Removed---</Etag>
        <Content-Length>7150</Content-Length>
        <Content-Type>application/octet-stream</Content-Type>
        <Content-Encoding />
        <Content-Language />
        <Content-MD5 />
        <Cache-Control />
        <Content-Disposition />
        <BlobType>BlockBlob</BlobType>
        <LeaseStatus>unlocked</LeaseStatus>
        <LeaseState>available</LeaseState>
      </Properties>
    </Blob>
  </Blobs>
  <NextMarker />
</EnumerationResults>

Get Blob named : 07272016

<?xml version="1.0" encoding="utf-16"?>
<PnsFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect">
  <FeedbackTime>2016-07-27T20:47:10.8905532Z</FeedbackTime>
  <NotificationSystemError>ExpiredChannel</NotificationSystemError>
  <Platform>windows</Platform>
  <PnsHandle>---Removed---</PnsHandle>
  <NotificationId>215e3aba529b49da9b6d35c134147952-20160727204710-2001061088-1</NotificationId>
</PnsFeedback>

<?xml version="1.0" encoding="utf-16"?>
<PnsFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect">
  <FeedbackTime>2016-07-27T20:56:34.1588971Z</FeedbackTime>
  <NotificationSystemError>ExpiredChannel</NotificationSystemError>
  <Platform>windows</Platform>
  <PnsHandle>---Removed---</PnsHandle>
  <NotificationId>82d1e0626bd14221be7298341ae9a7b3-20160727205634-2001061088-1</NotificationId>
</PnsFeedback>

程式碼範例

示範此 REST API 的範例程式碼可在 azure-notificationhubs-samples GitHub 存放庫中取得。