按第二屏Web应用程序检索预授权资源列表 retrieve-list-of-preauthorized-resources-by-second-screen-web-app

NOTE
此页面上的内容仅供参考。 使用此API需要来自Adobe的当前许可证。 不允许未经授权使用。
NOTE
REST API实现受限制机制限制

REST API端点 clientless-endpoints

<REGGIE_FQDN>:

<SP_FQDN>:

描述 description

请求Adobe Pass身份验证以获取预授权资源的列表。

有两组API:一组用于流应用程序或程序员服务,另一组用于第二屏幕Web应用程序。 本页介绍身份验证应用程序的API。

端点
调用者
输入
参数
HTTP
方法
响应
HTTP
响应
<SP_FQDN>/api/v1/preauthorize/
AuthN模块
1.注册码
(路径组件)
2。 请求者(必需)
3。 资源列表(必需)
GET
包含各个预授权决策或错误详细信息的XML或JSON。 请参阅下面的示例。
200 — 成功

400 — 错误请求

401 — 未授权

405 — 不允许的方法

412 — 前提条件失败

500 — 内部服务器错误
输入参数
描述
注册码
用户在身份验证流程开始时提供的注册代码值。
请求者
此操作有效的程序员requestorId。
资源列表
一个字符串,其中包含以逗号分隔的resourceId列表,该resourceId列表标识用户可能可以访问并被MVPD授权端点识别的内容。

示例响应 sample-response

XML:

HTTP/1.1 200 OK
Adobe-Request-Id : 7af28ec2-a068-45c2-8009-f5443049baf4`
Adobe-Response-Confidence : full
Content-Type: application/xml; charset=utf-8

<resources>
    <resource>
        <id>TestStream1</id>
        <authorized>true</authorized>
    </resource>
    <resource>
        <id>TestStream2</id>
        <authorized>false</authorized>
        <error>
            <status>403</status>
            <code>authorization_denied_by_mvpd</code>
            <message>User not authorized</message>
            <details>Your subscription package does not include the "TestStream3" channel.</details>
            <helpUrl>https://experienceleague-review.corp.adobe.com/docs/primetime/authentication/auth-features/error-reportn/enhanced-error-codes.html#error-codes</helpUrl>
            <trace>0453f8c8-167a-4429-8784-cd32cfeaee58</trace>
            <action>none</action>
        </error>
    <resource>
</resources>

JSON:

HTTP/1.1 200 OK
Adobe-Request-Id : 7af28ec2-a068-45c2-8009-f5443049baf4
Adobe-Response-Confidence : full
Content-Type: application/json; charset=utf-8

{
   "resources" : [
        {
            "id" : "TestStream1",
            "authorized" : true
        },
        {
            "id" : "TestStream3",
            "authorized" : false,
            "error" : {
               "status" : 403,
               "code" : "authorization_denied_by_mvpd",
               "message" : "User not authorized",
               "details" : "Your subscription package does not include the "TestStream3" channel.",
               "helpUrl" : "https://experienceleague-review.corp.adobe.com/docs/primetime/authentication/auth-features/error-reportn/enhanced-error-codes.html#error-codes",
               "trace" : "0453f8c8-167a-4429-8784-cd32cfeaee58",
               "action" : "none"
            }
        }
    ]
}
recommendation-more-help
3f5e655c-af63-48cc-9769-2b6803cc5f4b