擷取驗證Token retrieve-authentication-token

NOTE
此頁面上的內容僅供參考。 使用此API需要Adobe的目前授權。 不允許未經授權的使用。
NOTE
REST API實作已由節流機制限制

REST API端點 clientless-endpoints

<REGGIE_FQDN>:

<SP_FQDN>:

說明 description

擷取驗證(AuthN) Token。

端點
呼叫
輸入
引數
HTTP
方法
回應
HTTP
回應
<SP_FQDN>/api/v1/tokens/authn

例如:

<SP_FQDN>/api/v1/tokens/authn
串流應用程式



程式設計師服務
1.要求者(必要)
2。 deviceId (必要)
3。 device_info/X-Device-Info (必要)
4。 deviceType (已棄用)
5。 deviceUser (已棄用)
6。 appId (已棄用)
GET
XML或JSON,其中包含驗證資訊或失敗時的錯誤詳細資料。
200 — 成功。
404 — 找不到Token
410 - Token已過期
輸入引數
說明
要求者
此作業有效的程式設計師要求者ID。
deviceId
裝置識別碼位元組。
device_info/

X-Device-Info
串流裝置資訊。

注意:這可以作為URL引數傳遞device_info,但由於此引數的潛在大小以及GETURL長度的限制,它應該作為X-Device-Info傳遞到http標頭。

檢視傳遞裝置和連線資訊中的完整詳細資料。
deviceType
裝置型別(例如Roku、PC)。

注意: device_info會取代此引數。
deviceUser
裝置使用者識別碼。

注意:若使用,deviceUser的值應該與建立註冊代碼要求中的值相同。
appId
應用程式id/名稱。

注意: device_info會取代此引數。 若已使用,appId應具有與建立註冊代碼要求中相同的值。

範例回應 response

成功

XML:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <authentication>
         <expires>1601114932000</expires>
         <userId>sampleUserId</userId>
         <mvpd>sampleMvpdId</mvpd>
         <requestor>sampleRequestor</requestor>
    </authentication>

JSON:

    {
         "requestor": "sampleRequestor",
         "mvpd": "sampleMvpdId",
         "userId": "sampleUserId",
         "expires": "1601114932000"
    }

找不到驗證Token:

XML:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <error>
        <status>404</status>
        <message>Not found</message>
    </error>

JSON:

    {
        "status": 404,
        "message": "Not Found"
    }
recommendation-more-help
3f5e655c-af63-48cc-9769-2b6803cc5f4b