ExportCustomSourceAnalysisTask
Exports custom data source topic perspective analysis task results.
Try it now
Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.
RAM authorization
The table below describes the authorization required to call this API. You can define it in a Resource Access Management (RAM) policy. The table's columns are detailed below:
-
Action: The actions can be used in the
Actionelement of RAM permission policy statements to grant permissions to perform the operation. -
API: The API that you can call to perform the action.
-
Access level: The predefined level of access granted for each API. Valid values: create, list, get, update, and delete.
-
Resource type: The type of the resource that supports authorization to perform the action. It indicates if the action supports resource-level permission. The specified resource must be compatible with the action. Otherwise, the policy will be ineffective.
- For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the
Resourceelement of the policy. - For APIs without resource-level permissions, it is shown as All Resources. Use an asterisk (*) in the
Resourceelement of the policy.
- For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the
-
Condition key: The condition keys defined by the service. The key allows for granular control, applying to either actions alone or actions associated with specific resources. In addition to service-specific condition keys, Alibaba Cloud provides a set of common condition keys applicable across all RAM-supported services.
-
Dependent action: The dependent actions required to run the action. To complete the action, the RAM user or the RAM role must have the permissions to perform all dependent actions.
Action | Access level | Resource type | Condition key | Dependent action |
|---|---|---|---|---|
aimiaobi:ExportCustomSourceAnalysisTask | get | *All Resource
| None | None |
Request parameters
Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
| WorkspaceId | string | Yes | Unique identifier for the workspace: AgentKey | xxxxx_p_efm |
| TaskId | string | Yes | Unique ID for the task | c9f226b02cca4f42a84c5e955c39dfd2 |
| ExportType | string | No | Export format type. Default is jsonLine. jsonline: Exports in jsonLine format. excel: Exports in Excel format. | jsonLine |
Response elements
Element | Type | Description | Example |
|---|---|---|---|
object | PlainResult | ||
| Code | string | Status code | NoData |
| Data | string | Publicly accessible URL | |
| HttpStatusCode | integer | HTTP status code | 200 |
| Message | string | Error description | success |
| RequestId | string | Unique request identifier | 1813ceee-7fe5-41b4-87e5-982a4d18cca5 |
| Success | boolean | Is successful: true for success, false for failure | true |
The file is returned in JSON Lines format. Each line is a JSON object. The JSON object format is as follows:
| Field Name | Field Type | Field Description |
|---|---|---|
| topic | string | Topic name |
| topicSummaryResult | array<TopicSummaryResult> | List of topic summaries |
| hotViewPointsResult | HotViewPointsResult | Hot perspective analysis result |
| timedViewPointsResult | TimedViewPointsResult | Timeliness perspective analysis result |
| webReviewPointsResult | WebReviewPointsResult | User perspective analysis result |
| freshViewPointsResult | FreshViewPointsResult | Novel perspective analysis result |
TopicSummaryResult (Topic Summary)
| Field Name | Field Type | Field Description |
|---|---|---|
| summaries | array<SummaryItem> | List of topic summaries |
SummaryItem (Topic Summary)
| Field Name | Field Type | Field Description |
|---|---|---|
| title | string | Topic summary title |
| summary | string | Topic summary content |
| docList | array<DocItem> | List of documents referenced by the summary |
DocItem (Referenced Document)
| Field Name | Field Type | Field Description |
|---|---|---|
| title | string | Document title |
| url | string | Document link |
| source | string | Document source |
HotViewPointsResult (Hot Perspective Analysis Result)
| Field Name | Field Type | Field Description |
|---|---|---|
| attitudes | array<HotAttitudeItem> | List of hot perspectives |
HotAttitudeItem (Hot Perspective)
| Field Name | Field Type | Field Description |
|---|---|---|
| attitude | string | Hot perspective |
| attitudeType | string | Hot perspective type |
| news | array<HotNewsItem> | List of articles referenced by the hot perspective |
| ratio | string | Proportion of this hot perspective in the entire topic |
| viewPoints | array<HotViewPointItem> | List of planning proposals for hot perspectives |
HotNewsItem (Articles Referenced by Hot Perspective)
| Field Name | Field Type | Field Description |
|---|---|---|
| title | string | Article title |
| url | string | Article link |
| source | string | Article source |
HotViewPointItem (Hot Perspective Topic Selection)
| Field Name | Field Type | Field Description |
|---|---|---|
| point | string | Topic planning direction |
| summary | string | Summary of the topic planning direction |
| outlines | array<OutlineItem> | Outline of the topic planning direction |
OutlineItem
| Field Name | Field Type | Field Description |
|---|---|---|
| outline | string | Outline title |
| summary | string | Outline summary |
TimedViewPointsResult (Timeliness Perspective Analysis Result)
| Field Name | Field Type | Field Description |
|---|---|---|
| attitudes | array<TimedAttitudeItem> | List of timeliness perspectives |
TimedAttitudeItem (Timeliness Perspective)
| Field Name | Field Type | Field Description |
|---|---|---|
| docUuid | string | Unique news identifier |
| title | string | News title |
| url | string | News link |
| source | string | News source |
| pubTime | string | News publication time |
| viewPoints | array<TimedViewPointItem> | List of planning proposals for timeliness perspectives |
TimedViewPointItem (Timeliness Perspective Topic Selection)
| Field Name | Field Type | Field Description |
|---|---|---|
| point | string | Topic planning direction |
| summary | string | Summary of the topic planning direction |
| outlines | array<OutlineItem> | Outline of the topic planning direction |
OutlineItem
| Field Name | Field Type | Field Description |
|---|---|---|
| outline | string | Outline title |
| summary | string | Outline summary |
WebReviewPointsResult (User Perspective Analysis Result)
| Field Name | Field Type | Field Description |
|---|---|---|
| attitudes | array<WebReviewAttitudeItem> | List of user perspectives |
WebReviewAttitudeItem (User Perspective)
| Field Name | Field Type | Field Description |
|---|---|---|
| attitude | string | User perspective |
| attitudeType | string | User perspective type |
| ratio | string | Proportion of this user perspective in the entire topic |
| comments | array<WebReviewCommentItem> | List of user comments |
| viewPoints | array<WebReviewViewPointItem> | List of planning proposals for user perspectives |
WebReviewCommentItem (User Comments)
| Field Name | Field Type | Field Description |
|---|---|---|
| text | string | User comment |
| source | string | Source of user comment |
| url | string | News link for user comment source |
| title | string | News title for user comment source |
WebReviewViewPointItem (User Perspective Topic Selection)
| Field Name | Field Type | Field Description |
|---|---|---|
| point | string | Topic planning direction |
| summary | string | Summary of the topic planning direction |
| outlines | array<OutlineItem> | Outline of the topic planning direction |
OutlineItem
| Field Name | Field Type | Field Description |
|---|---|---|
| outline | string | Outline title |
| summary | string | Outline summary |
FreshViewPointsResult
| Field Name | Field Type | Field Description |
|---|---|---|
| attitudes | array<FreshAttitudeItem> | List of novel perspectives |
FreshAttitudeItem (Novel Perspective)
| Field Name | Field Type | Field Description |
|---|---|---|
| viewPoints | array<FreshViewPointItem> | List of planning proposals for novel perspectives |
FreshViewPointItem (Novel Perspective Topic Selection)
| Field Name | Field Type | Field Description |
|---|---|---|
| point | string | Topic planning direction |
| summary | string | Summary of the topic planning direction |
| outlines | array<OutlineItem> | Outline of the topic planning direction |
OutlineItem
| Field Name | Field Type | Field Description |
|---|---|---|
| outline | string | Outline title |
| summary | string | Outline summary |
Examples
Success response
JSON format
{
"Code": "NoData",
"Data": "http://www.example.com/xxx.jsonLine\n",
"HttpStatusCode": 200,
"Message": "success",
"RequestId": "1813ceee-7fe5-41b4-87e5-982a4d18cca5",
"Success": true
}
Error codes
HTTP status code | Error code | Error message | Description |
|---|---|---|---|
| 403 | NoPermission | You are not authorized to perform this action. | Please check the workspaceId assignment |
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.