ReadPageBasic-Standard

更新时间:
复制 MD 格式

This topic describes the ReadPageBasic API for parsing a static web page, including its function, parameters, return values, and usage.

API

Features:

Retrieves and parses the content of static web pages.

  • If the Content-Type in the response header for the target address is application/pdf, the system automatically triggers PDF parsing. This process supports PDF files up to 20 MB and is counted as an additional valid request.

API

Request parameters

Parameter

Value

Description

url

<string>

required

The target URL to parse. Must start with http:// or https://.

pageTimeout

<int>

[0, 100000]

default: 10000

The page load timeout in milliseconds. The total API response time can take up to 6000 ms longer than this value.

  • Most pages load within 5000 ms.

  • Set this value to 10000 ms for resource-heavy pages.

formats

<array>

rawHtml

html

markdown

text

screenshot

default: [
"html", "markdown", "text"
]

The output formats for the parsed result.

  • rawHtml: The raw HTML of the target site.

  • html: Page content processed by readabilityMode.

  • markdown: Markdown content converted from the processed html.

  • text: The text content extracted from the processed html.

  • screenshot: A screenshot of the page. Enabling this option adds 2-5 seconds to the API response time, in addition to the pageTimeout.

maxAge

<int>

[0, ∞]

default: 1296000

The maximum cache age in seconds.

  • If a cached result's age is less than maxAge, the API returns the cached content.

  • Setting maxAge to 0 disables the cache.

readability

<map>

readabilityMode

<string>

none

normal

article

default: none

normal: Uses a proprietary algorithm to remove irrelevant elements (such as headers, footers, and navigation) and return the main content.

article: Uses a proprietary algorithm to extract the main content of a page. This mode is best suited for articles like blog posts and news, but not for index or navigation pages.

excludeAllImages

<bool>

default: false

Specifies whether to exclude all images from the output.

excludeAllLinks

<bool>

default: false

Specifies whether to exclude all links from the output.

excludedTags

<array>

[]

An array of HTML tags to exclude from the output. For example:

["form", "header", "footer", "nav"]

Return parameters

Parameter

Description

Example

requestId

<string>

A unique identifier for the request. Provide this ID when troubleshooting.

errorCode

<string | null>

The error code. This value is null if the operation is successful.

Error Codes

errorMessage

<string | null>

The error message. This value is null if the operation is successful.

data

<map>

statusCode

<int>

  • The HTTP status code returned by the target site on a successful request.

  • A custom IQS error code if the request fails:

    • 4030: Access denied by the target site due to security restrictions (such as robots.txt or other security policies).

    • 4080: The request to the target site timed out.

    • 4290: The site's rate limiting policy was triggered.

    • 5010: An unknown exception occurred.

rawHtml

<string | null>

The original HTML source code of the target page.

html

<string | null>

The readable HTML content extracted from the target page.

text

<string | null>

The plain text content of the page.

markdown

<string | null>

The page content converted to Markdown format.

actions

<array | null>

The results of the executed actions.

{
  "actions": [
    {},
    {},
    {
      "ret": ""
    }
  ]
}

links

<map | null>

internal

<map|null>

An array of internal links found on the target page.

  • href: The URL of the link.

  • text: The display text of the link.

  • title: The title attribute of the link, often used for tooltips.

{
 "href": "https://www.alibabagroup.com/cn/global/home",
 "text": "Alibaba Group",
 "title": ""
}

external

<map|null>

An array of external links found on the target page.

media

<map | null>

images

<map|null>

An array of image objects found on the target page.

  • type: The media type, which is image.

  • src: The URL of the image.

  • data: Any embedded or supplementary data.

  • alt: The alternative text for the image.

  • desc: An additional description of the image.

  • format: The image file format, such as jpg or png.

{
 "type": "image",
 "src": "https://img.alicdn.com/tfs/TB1AOdINW6qK1RjSZFmXXX0PFXa-258-258.jpg",
 "data": "",
 "alt": "Alibaba Cloud WeChat",
 "desc": null,
 "format": "jpg"
}

audios

<array|null>

An array of audio objects found on the target page.

  • type: The media type, which is audio.

  • src: The URL of the audio file.

  • data: Any embedded or supplementary data.

  • alt: The alternative text for the audio.

  • desc: An additional description of the audio.

  • format: The audio file format, such as mp3 or wav.

videos

<array|null>

An array of video objects found on the target page.

  • type: The media type, which is video.

  • src: The URL of the video.

  • data: Any embedded or supplementary data.

  • alt: The alternative text for the video.

  • desc: An additional description of the video.

  • format: The video file format, such as mp4 or webm.

[
 {
 "type": "video",
 "src": "blob:https://xxxxx.com/xxx",
 "data": "",
 "alt": null,
 "desc": "",
 "format": null
 }
 ]

metadata

<map>

url

<string>

The target URL.

{
  "metadata": {
    "url": "https://example.com/article/123",
    "title": "Example Article Title",
    "hostLogo": "https://example.com/favicon.ico",
    "lastModified": "2026-06-20T10:00:00Z",
    "redirectedUrl": null,
    "contentType": "text/html; charset=utf-8",
    "pdfParse": false,
    "description": "A brief description of the article.",
    "author": "John Doe",
    "publishedDate": "2026-06-15T08:30:00Z",
    "siteName": "Example Site",
    "imageUrl": "https://example.com/images/og-image.jpg",
    "canonicalUrl": "https://example.com/article/123",
    "language": "en",
    "schemaType": "Article",
    "pageType": "article"
  }
}

redirectedUrl

The final URL after redirection.

title

<string|null>

The page title.

hostLogo

<string|null>

The URL for the site's favicon or logo.

lastModified

<string|null>

The last modified time of the page.

publishedDate

<string|null>

publication date (article:published_time / JSON-LD datePublished)

contentType

<string|null>

HTTP response Content-Type header

description

<string|null>

page description (og:description → <meta name="description">)

author

<string|null>

Author information (article:author / JSON-LD author)

siteName

<string|null>

site name (og:site_name)

imageUrl

<string|null>

Main image URL (og:image)

canonicalUrl

<string|null>

Canonical URL (<link rel="canonical">)

language

<string|null>

page language (<html lang="...">)

schemaType

<string|null>

JSON-LD @type (such as ArticleProduct)

pageType

<string|null>

The page type as classified by a proprietary algorithm.

  • article: An individual article, news story, blog post, or long-form content.

  • forum: A forum, Q&A page, or discussion thread.

  • product: An e-commerce product detail page.

  • listing: A search result, list, or category index page.

  • collection: A homepage, landing page, or navigation page.

  • documentation: Technical documentation, such as API references, tutorials, or FAQs.

  • service: A marketing, pricing, contact, about, or privacy policy page.

  • empty: An empty page, such as a 404 error or a page with no content.

  • login: A login or authentication page.

  • video: A page where video is the primary content.

  • paid: A page with a paywall.

  • other: A page that does not fit into any other category.

pdfParse

<bool>

Indicates whether PDF parsing was triggered for the URL.

Error codes

HTTP code

Error code

Error message

Solution

404

InvalidAccessKeyId.NotFound

The specified access key was not found.

Verify that your AccessKey and Secret are correct.

403

Retrieval.NotActivate

Activate the AI search service.

Place an order or contact your account manager to activate the service.

403

Retrieval.NotAuthorized

Grant the AliyunIQSFullAccess privilege to the sub-account.

The sub-account is not authorized. See Create a RAM user and grant permissions.

429

Retrieval.Throttling.User

User rate limit exceeded.

You have exceeded the rate limiting threshold.

429

Retrieval.TestUserQueryPerDayExceeded

You have exceeded the daily query limit.

You have exceeded the trial query limit (1,000 queries per 30 days).

403

ReadPage.SecurityRestrict

Security restrictions on the target site (e.g., robots.txt).

400

ReadPage.RequestTimeout

The request to the target URL timed out.

The request timed out. Consider increasing the timeout value.

429

ReadPage.RateLimitByDomain

The domain has reached the rate limit.

500

ReadPage.UnknownError

An unknown error occurred.

API call

Example

Python SDK

Prerequisites

Python 3.8 or later is required.

Install the SDK
pip install alibabacloud_iqs20241111==1.6.0
Sample code
import json

from Tea.exceptions import TeaException
from alibabacloud_iqs20241111 import models
from alibabacloud_iqs20241111.client import Client
from alibabacloud_tea_openapi import models as open_api_models


class Sample:
    def __init__(self):
        pass

    @staticmethod
    def create_client() -> Client:
        config = open_api_models.Config(
            # TODO: Replace with your AccessKey ID and AccessKey Secret. 
            # We recommend loading them from environment variables for security.
            access_key_id='$YOUR_ACCESS_KEY',
            access_key_secret='$YOUR_ACCESS_SECRET'
        )
        config.endpoint = f'iqs.cn-zhangjiakou.aliyuncs.com'
        return Client(config)

    @staticmethod
    def main() -> None:
        client = Sample.create_client()
        run_instances_request = models.ReadPageBasicRequest(
            body=models.ReadPageBody(
                url='http://www.example.com',
                max_age=0,
            )
        )
        try:
            response = client.read_page_basic(run_instances_request)
            print(f"API call successful. request ID: {response.body.request_id}, Result: ")
            print(f"{json.dumps(response.body.data.to_map(), indent=2)}")

        except TeaException as e:
            request_id = e.data.get("requestId")
            code = e.data.get("errorCode")
            message = e.data.get("errorMessage")
            print(f"API call failed. request ID: {request_id}, Code: {code}, Message: {message}")


if __name__ == '__main__':
    Sample.main()
    

Java SDK

Prerequisites

Java 8 or later is required.

Maven dependency
<dependency>
    <groupId>com.aliyun</groupId>
    <artifactId>iqs20241111</artifactId>
    <version>1.6.0</version>
</dependency>
Sample code
package com.aliyun.iqs.readpage.example;

import com.aliyun.iqs20241111.Client;
import com.aliyun.iqs20241111.models.*;
import com.aliyun.teaopenapi.models.Config;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

public class Example {
    public static void main(String[] args) throws Exception {
        Client client = initClient();
        invoke(client, "http://www.example.com");
    }

    private static Client initClient() throws Exception {
        // TODO: Replace with your AccessKey ID and AccessKey Secret. 
        // We recommend loading them from environment variables for security.
        String accessKeyId = "$YOUR_ACCESS_KEY";
        String accessKeySecret = "$YOUR_ACCESS_SECRET";

        Config config = new Config()
                .setAccessKeyId(accessKeyId)
                .setAccessKeySecret(accessKeySecret);

        config.setEndpoint("iqs.cn-zhangjiakou.aliyuncs.com");
        return new Client(config);
    }

    private static void invoke(Client client, String url) {
        ReadPageBody input = new ReadPageBody();
        input.setUrl(url);

        ReadPageBasicRequest request = new ReadPageBasicRequest().setBody(input);

        try {
            ReadPageBasicResponse response = client.readPageBasic(request);

            printOutput(response.getBody());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void printOutput(ReadPageBasicResponseBody output) {
        // Initializes a Gson instance for pretty-printing JSON.
        Gson gson = new GsonBuilder()
                .setPrettyPrinting()
                .disableHtmlEscaping()
                .create();

        // Print the formatted JSON.
        String prettyJson = gson.toJson(output);
        System.out.println(prettyJson);
    }
}

Go SDK

Prerequisites

Go version 1.10.x or later is required.

Install the SDK
require (
  github.com/alibabacloud-go/iqs-20241111 v1.6.0
)
Sample code
package main

import (
	"fmt"
	"log"

	openapi "github.com/alibabacloud-go/darabonba-openapi/v2/client"
	iqs20241111 "github.com/alibabacloud-go/iqs-20241111/client"
	util "github.com/alibabacloud-go/tea-utils/v2/service"
	"github.comcom/alibabacloud-go/tea/tea"
)

const endpointURL = "iqs.cn-zhangjiakou.aliyuncs.com"

func createClient() (*iqs20241111.Client, error) {
	// TODO: Replace with your AccessKey ID and AccessKey Secret.
	accessKeyID := "YOUR_ACCESS_KEY"
	accessKeySecret := "YOUR_ACCESS_SECRET"

	if accessKeyID == "" || accessKeySecret == "" {
		return nil, fmt.Errorf("AccessKey ID or AccessKey Secret not set")
	}

	config := &openapi.Config{
		AccessKeyId:     tea.String(accessKeyID),
		AccessKeySecret: tea.String(accessKeySecret),
		Endpoint:        tea.String(endpointURL),
	}

	return iqs20241111.NewClient(config)
}

func runReadPage(client *iqs20241111.Client) error {
	body := &iqs20241111.ReadPageBody{
		Url: tea.String("http://www.example.com"),
	}
	request := &iqs20241111.ReadPageBasicRequest{
		body,
	}
	runtime := &util.RuntimeOptions{}

	resp, err := client.ReadPageBasicWithOptions(request, nil, runtime)
	if err != nil {
		return fmt.Errorf("failed to read page: %w", err)
	}

	fmt.Printf("request ID: %s\nResponse: %s\n", *resp.Body.RequestId, util.ToJSONString(resp.Body))
	return nil
}

func main() {
	client, err := createClient()
	if err != nil {
		log.Fatalf("Failed to create client: %v", err)
	}

	if err := runReadPage(client); err != nil {
		log.Fatalf("Failed to read page: %v", err)
	}
}

HTTP call

  • request body

curl --location 'https://cloud-iqs.aliyuncs.com/readpage/basic' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <YOUR-IQS-API-KEY>' \
--data '{
    "url": "https://help.aliyun.com/document_detail/2837301.html?spm=a2c4g.11186623.help-menu-2837261.d_0_0_0.59ed3e95CppOt2&scm=20140722.H_2837301._.OR_help-T_cn~zh-V_1",
    "maxAge": 0
}'
  • response

{
    "data": {
    "html": "<!DOCTYPE html><html lang=\"en\"><head>\n  <meta name=\"nav-disable\" content=\"flex\">\n  \n  \n  \n  \n\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\">\n  <meta http-equiv=\"Cache-Control\" content=\"no-siteapp\">\n  <meta name=\"renderer\" content=\"webkit\">\n  <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge,chrome=1\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no\">\n  <meta name=\"applicable-device\" content=\"pc,mobile\">\n  <meta name=\"nav-config\" content=\"footer=default\">\n  <meta name=\"aplus-core\" content=\"aplus.js\">\n  <meta name=\"aplus-ajax\" content=\"chksum\">\n  <meta name=\"aplus-waiting\" content=\"MAN\">\n  <meta name=\"aplus-pvhash\" content=\"1\">\n  \n  <meta name=\"data-spm\" content=\"a2c4g\">\n  \n  \n\n  \n  <title>\n    Alibaba Cloud's WebSearch is a general-purpose, open-domain search solution for large models. It integrates multi-dimensional data sources, delivers millisecond-level responses, and intelligently optimizes real-time Q&amp;A for greater efficiency and accuracy.-阿里云帮助中心\n  </title>\n  \n  <meta name=\"keywords\" content=\"information query service, general-purpose search, real-time search, data integration, search optimization, large model, API\">\n  <meta name=\"description\" content=\"\">\n  <meta name=\"last-modified\" content=\"2026-04-16T04:50:16+08:00\">\n  <meta name=\"date\" content=\"2026-01-15T04:49:51+08:00\">\n  <meta property=\"og:title\" content=\"WebSearch\">\n  <meta property=\"og:type\" content=\"website\">\n  <meta property=\"og:url\" content=\"https://help.aliyun.com/en/document_detail/2837301.html\">\n  <meta property=\"og:image\" content=\"https://img.alicdn.com/imgextra/i1/O1CN012QgtoH1c1Mu70xD3w_!!6000000003540-2-tps-640-640.png\">\n  <meta property=\"og:description\" content=\"\">\n  \n  \n\n  \n  \n\n  \n\n\n</head>\n\n<body>\n\n  \n  <header><div id=\"2f59a10e7d381b6659432c2328a583cc\"><div class=\"_18a32969382a277c44015217fbc5cb5a_box\"><div class=\"_3bd147f6948a20d6c528ac898ad4ba47_pc de5ef2fee09ebcb2b1dcaf0c982523bc_theme _277ebb348812c9712fac6b680ad5e513_reset _277ebb348812c9712fac6b680ad5e513_aliyun-font-family\" data-ai-assistant-text-selection-tooltip=\"disabled\"><header class=\"_702422913dd5754f065139ec2d2def80_container   \"><a href=\"https://www.aliyun.com/\" class=\"_3f46140aade30bc61f3012933357c477_logo _702422913dd5754f065139ec2d2def80_logo\" data-tracker-content=\"LOGO\" data-spm=\"d_logo\"></a><div class=\"e76910c82efe8556eb8a6ce6019c5d00_container\"><div class=\"e76910c82efe8556eb8a6ce6019c5d00_menu-warp\"><nav class=\"_0b0e00051b37611378e027e6ac3a695a_menus\"><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/product/tongyi\" data-spm=\"d_menu_0\">Models</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/product/list\" data-spm=\"d_menu_1\">Products</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/solution/tech-solution/\" data-spm=\"d_menu_2\">Solutions</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/benefit\" data-spm=\"d_menu_3\">Benefits</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/price\" data-spm=\"d_menu_4\">Pricing</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://market.aliyun.com/\" data-spm=\"d_menu_5\">Marketplace</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://partner.aliyun.com/management/v2\" data-spm=\"d_menu_6\">Partners</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/service\" data-spm=\"d_menu_7\">Services</a><a class=\"_2cdcedb5935313401458d214540870bc_menu\" href=\"https://www.aliyun.com/about\" data-spm=\"d_menu_8\">About</a></nav></div></div><div class=\"_174801eef2caf75aeaee91c72b19c09a_container\"><a class=\"_174801eef2caf75aeaee91c72b19c09a_item\" href=\"https://help.aliyun.com/\" target=\"_blank\" data-spm=\"d_quick_access_3\">Docs</a><a class=\"_174801eef2caf75aeaee91c72b19c09a_item\" href=\"https://beian.aliyun.com/\" target=\"_blank\" data-spm=\"d_quick_access_4\">ICP Filing</a><a class=\"_174801eef2caf75aeaee91c72b19c09a_item\" href=\"https://home.console.aliyun.com/home/dashboard/ProductAndService\" target=\"_blank\" data-spm=\"d_quick_access_5\" rel=\"nofollow\">Console</a><span class=\"f8312ad103723788906e97b238dccd8c_loading _174801eef2caf75aeaee91c72b19c09a_item\"></span></div></header></div><div class=\"_3bd147f6948a20d6c528ac898ad4ba47_mobile de5ef2fee09ebcb2b1dcaf0c982523bc_theme _277ebb348812c9712fac6b680ad5e513_reset _277ebb348812c9712fac6b680ad5e513_aliyun-font-family\"></div><div class=\"_18a32969382a277c44015217fbc5cb5a_box\"></div></div></div></header>\n\n  <div id=\"app\"><div class=\"MainLayout--mainContainer--FzmzeDI\" id=\"docs-container\"><div class=\"MainLayout--helpBodyHead--fFcCOhC\"><div class=\"HelpBodyHead--helpBodyHeadBox--VWOHGv0 help-body-head\" data-spm=\"help-sub-nav\"><div class=\"HelpBodyHead--helpBodyHead--YgG0_RH help-body-head-content\"><div class=\"HelpBodyHead--helpHeadDocName--eZC8orQ\"><a href=\"/zh\" data-spm=\"d_logo\">官方文档</a></div><div class=\"help-tablist\"></div><div class=\"HelpBodyHead--bodyHeadRight--mgSoj67\"></div></div></div></div><div class=\"PcLayout--docsContainer--pwbB9bE\"><div class=\"PcLayout--mobileHelpBodyHead--g_YCRMg\"><div class=\"HelpBodyHead--mobileHeadBlank--_hX8BWJ\"></div></div><div class=\"PcLayout--aliyunAppLayout--_QE36ni\"><nav class=\"aliyun-docs-menu\" id=\"aliyun-docs-menu\"><div class=\"Menu--helpMenuBox--WZ7MX3B\" id=\"help-menu-box\" style=\"width:300px\"><div class=\"Menu--helpMenuInnerBox--kxSXymh aliyun-docs-toc-content\" style=\"width:300px\"><div class=\"Menu--helpMenuDrag--fs9WrRe help-menu-drag-box\"></div><div class=\"Menu--helpMenu--reWzeMt\"><div class=\"help-menu-subproduct\"></div><div class=\"MenuSearch--collapseActionBar--m98Zp_n\"><div class=\"MenuSearch--searchContainer--yxqXL6w\"><div class=\"MenuSearch--searchInputWrapper--xJnk941\"><span role=\"img\" class=\"Icon--icon--jErARdR MenuSearch--searchIcon--YWpGKq9\"></span></div></div></div><div class=\"help-menu-scroll-container Menu--menuContent--f6GC88t\" data-spm=\"help-menu-undefined\"><ul id=\"common-menu-container\">\n <li id=\"2837300\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/2837300.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Product Overview</span>\n</a>\n</li>\n <li id=\"2880836\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/2880836.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Billing</span>\n</a>\n</li>\n <li id=\"2880197\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/2880197.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Quick start</span>\n</a>\n</li>\n <li id=\"2837265\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/2837265.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Use Cases</span>\n</a>\n</li>\n <li id=\"3000049\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/3000049.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Developer reference</span>\n</a>\n</li>\n <li id=\"2870241\" class=\"Menu--level1--UN3zYr3\">\n<a href=\"/en/document_detail/2870241.html\">\n<i class=\"iconfont icon-close-arrow\"></i>\n<span class=\"Menu--menuItemText--a6B4ZGH\">Support</span>\n</a>\n</li>\n</ul></div></div></div></div></nav><main class=\"aliyun-docs-view\" id=\"aliyun-docs-view\"><div class=\"ProductDetail--contentWrapper--iCunrBZ\"><section class=\"aliyun-docs-content\" style=\"height:auto\"><header class=\"aliyun-docs-view-header\"><div class=\"Header--topBar--LXfTLL5\"><div class=\"BreadCrumb--breadcrumb--s_Uzlex\"><div class=\"help-header-breadcrumb\"><a href=\"/zh\">首页</a></div></div></div><div class=\"Header--title--iTk2tUo\"><h1>WebSearch</h1><div class=\"Header--actionBar--dvzFYrk\"><div class=\"Header--left--x8TGxDL\"><span class=\"Header--updateTime--YXGPhcZ\">更新时间:</span></div><div class=\"Header--right--l4TSW1E\"><div class=\"Header--linkButton--LpCRs1O\"><div class=\"OuterUrl--outUrl--ZFzJIhk\"><a href=\"https://www.aliyun.com/product/iqs\" target=\"_blank\" rel=\"noreferrer\">产品详情</a></div></div><div class=\"Contact--contactButton--TBwTX5R\"><span class=\"Contact--favoritesBtn--J8mRVBp\" title=\"收藏本文档\" data-spm-click=\"gostr=/aliyun;locaid=collect\"><i class=\"help-iconfont help-icon-like\"></i></span><a href=\"/my_favorites.html\">我的收藏</a></div></div></div></header><div class=\"pc-markdown-container unionContainer\" id=\"pc-markdown-container\"><div class=\"markdown-body\"></div><div class=\"aliyun-docs-pagination\"></div></div><div class=\"RecommendDoc--container--M1qVQax\"></div><div class=\"FeedbackButton--feedbackContainer--njtB22l aliyun-docs-feedback\" id=\"help-doc-feedback\"><div class=\"FeedbackButton--feedbackHelpTip--JxaBwdy\">该文章对您有帮助吗?</div><div class=\"FeedbackButton--feedbackButtonContainer--ujiXFNJ\"><div class=\"FeedbackButton--feedbackButtonBox--GmY1Nor\"></div></div></div></section><div class=\"aliyun-docs-side\" id=\"aliyun-docs-side\"><div id=\"aliyun-docs-side-content\" class=\"aliyun-docs-side-content ProductDetail--rightBox--GGLE5sH\"><ul class=\"Outline--synopsisBox--zm_HamD\" id=\"outline-container\"></ul></div><div id=\"aliyun-docs-side-blank\" class=\"aliyun-docs-side-blank\"></div></div></div></main></div></div><div id=\"aliyun-docs-selection-div\"></div></div></div>\n  <footer><div id=\"6e47a38a4ab607044ad0d9d4e8ca67ba\"><div class=\"_18a32969382a277c44015217fbc5cb5a_box\"><footer class=\"_49ada0cd752f65901c49f2eed0d6c3d5_container\" aria-label=\"PC 端页尾\"><div class=\"_49ada0cd752f65901c49f2eed0d6c3d5_inner\"><div class=\"_296d5000d6fdcaff9d0bfd209c64fbbc_services\"><nav class=\"_296d5000d6fdcaff9d0bfd209c64fbbc_homepage-footer-main-services\" aria-label=\"页脚导航\"><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Why Choose Alibaba Cloud</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/about/what-is-cloud-computing\" target=\"_blank\">What is Cloud Computing</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://infrastructure.aliyun.com/\" target=\"_blank\">Global Infrastructure</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/why-us/leading-technology\" target=\"_blank\">Technology Leadership</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/why-us/reliability\" target=\"_blank\">Stability &amp; Reliability</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/why-us/security-compliance\" target=\"_blank\">Security &amp; Compliance</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/analyst-reports\" target=\"_blank\">Analyst Reports</a></section><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Models</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/product/tongyi\" target=\"_blank\">Qwen Series</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://bailian.console.aliyun.com/?tab=model#/model-market\" target=\"_blank\" rel=\"nofollow\">Model Services</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://bailian.console.aliyun.com/app-center?tab=app#/app-center\" target=\"_blank\" rel=\"nofollow\">AI Application Development</a></section><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Products &amp; Pricing</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/product/list\" target=\"_blank\">All Products</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://free.aliyun.com/\" target=\"_blank\">Free Trials</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/product/news/\" target=\"_blank\">Product Updates</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/price/detail\" target=\"_blank\">Pricing</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/price/cpq/list\" target=\"_blank\">Pricing Calculator</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/price/cost-management\" target=\"_blank\">Cost Management</a></section><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Technical Resources</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/solution/tech-solution\" target=\"_blank\">Solutions</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://help.aliyun.com/\" target=\"_blank\">Documentation</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://developer.aliyun.com/\" target=\"_blank\">Community</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://tianchi.aliyun.com/\" target=\"_blank\">Tianchi Competitions</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://edu.aliyun.com/\" target=\"_blank\">Alibaba Cloud Certification</a></section><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Benefits</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://free.aliyun.com/\" target=\"_blank\">Free Trials</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/solution/free\" target=\"_blank\">Solution Trials</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://university.aliyun.com/\" target=\"_blank\">Academic Program</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/benefit/form/index\" target=\"_blank\">Computing Subsidy</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://dashi.aliyun.com/?ambRef=shouYeDaoHang2&amp;pageCode=yunparterIndex\" target=\"_blank\">Referral Program</a></section><section class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services\"><h3 class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-title\">Support</h3><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/service\" target=\"_blank\">24/7 Support</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/service/supportplans\" target=\"_blank\">Enterprise Support Plans</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/service/devopsimpl/devopsimpl_cloudmigration_public_cn\" target=\"_blank\">Cloud Migration Services</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/notice/\" target=\"_blank\">Service Notices</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://status.aliyun.com/\" target=\"_blank\">Status Dashboard</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://security.aliyun.com/trust-center\" target=\"_blank\">Trust Center</a></section></nav><article class=\"_7b44142961778903dda8af3f769cd06c_focus\"><h3 class=\"_7b44142961778903dda8af3f769cd06c_ali-main-services-title\">Follow Us</h3><p class=\"_7b44142961778903dda8af3f769cd06c_ali-main-services-desc\">Follow the Alibaba Cloud official account or download the app to stay updated. Manage and monitor your cloud services anytime, anywhere.</p><img alt=\"Alibaba Cloud app\" src=\"https://img.alicdn.com/imgextra/i4/O1CN01XLesV31fkf7pYNATb_!!6000000004045-2-tps-400-400.png\" class=\"_7b44142961778903dda8af3f769cd06c_ali-official-code\" loading=\"lazy\"><img alt=\"Alibaba Cloud WeChat\" src=\"https://img.alicdn.com/tfs/TB1AOdINW6qK1RjSZFmXXX0PFXa-258-258.jpg\" class=\"_7b44142961778903dda8af3f769cd06c_ali-official-code\" loading=\"lazy\"><p class=\"_7b44142961778903dda8af3f769cd06c_consult-text\">Contact us:4008013260</p></article></div><div class=\"_4598709a854bea355ceb6ef9f23f10d4_about-link-wrap\"><a href=\"https://help.aliyun.com/product/67275.html\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Legal Notice</a><a href=\"https://terms.alicdn.com/legal-agreement/terms/platform_service/20220906101446934/20220906101446934.html\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Cookie Policy</a><a href=\"https://aliyun.jubao.alibaba.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Integrity Reporting</a><a href=\"https://report.aliyun.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Security Reporting</a><a href=\"https://www.aliyun.com/contact\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Contact Us</a><a href=\"https://careers.aliyun.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-about-link\" target=\"_blank\">Careers</a></div><section class=\"_4598709a854bea355ceb6ef9f23f10d4_friend-link-wrap\"><a href=\"https://www.alibabagroup.com/cn/global/home\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alibaba Group</a><a href=\"https://www.taobao.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Taobao</a><a href=\"https://www.tmall.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Tmall</a><a href=\"https://www.aliexpress.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">AliExpress</a><a href=\"https://www.alibaba.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alibaba International</a><a href=\"https://www.1688.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">1688</a><a href=\"https://www.alimama.com/index.htm\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alimama</a><a href=\"https://www.fliggy.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Fliggy</a><a href=\"https://www.aliyun.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alibaba Cloud</a><a href=\"https://wanwang.aliyun.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">HiChina</a><a href=\"https://mobile.amap.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Amap</a><a href=\"https://www.uc.cn/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">UC</a><a href=\"https://www.umeng.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Umeng</a><a href=\"https://www.youku.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Youku</a><a href=\"https://www.dingtalk.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">DingTalk</a><a href=\"https://www.alipay.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alipay</a><a href=\"https://damo.alibaba.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">DAMO Academy</a><a href=\"https://world.taobao.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Taobao Global</a><a href=\"https://www.aliyundrive.com/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Alibaba Cloud Drive</a><a href=\"https://www.ele.me/\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-friend-link\" target=\"_blank\">Taobao Flash Sale</a></section><p class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-copyright-text\">© 2009- Present Aliyun.com. All rights reserved. alue-Added Telecommunications Business Operating License: <a href=\"http://beian.miit.gov.cn/\" target=\"_blank\"> Zhe B2-20080101</a> Domain Name Registration Service Provider License: <a href=\"https://domain.miit.gov.cn/域名注册服务机构/互联网域名/阿里云计算有限公司 \" target=\"_blank\">Zhe D3-20210002</a></p><p class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-wrap\"><a href=\"https://zzlz.gsxt.gov.cn/businessCheck/verifKey.do?showType=p&amp;serial=91330106673959654P-SAIC_SHOW_10000091330106673959654P1710919400712&amp;signData=MEUCIQDEkCd8cK7%2Fyqe6BNMWvoMPtAnsgKa7FZetfPkjZMsvhAIgOX1G9YC6FKyndE7o7hL0KaBVn4f%20V%2Fiof3iAgpsV09o%3D\" target=\"_blank\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-link\"><img src=\"//gw.alicdn.com/tfs/TB1GxwdSXXXXXa.aXXXXXXXXXXX-65-70.gif\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-img\" alt=\"\" loading=\"lazy\"></a><a href=\"http://www.beian.gov.cn/portal/registerSystemInfo\" target=\"_blank\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-link\"><img src=\"//img.alicdn.com/tfs/TB1..50QpXXXXX7XpXXXXXXXXXX-40-40.png\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-img\" alt=\"Zhejiang Public Security Bureau Record No. 33010602009975\" loading=\"lazy\"><span class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-link-text\">Zhejiang Public Security Bureau Record No. 33010602009975</span></a><a href=\"https://beian.miit.gov.cn/\" target=\"_blank\" class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-link\"><span class=\"_4598709a854bea355ceb6ef9f23f10d4_ali-report-link-text _4598709a854bea355ceb6ef9f23f10d4_ali-report-link-text-unique\">Zhejiang B2-20080101-4</span></a></p></div></footer><footer class=\"_4b41e3343c851a7a8833c9165b249eb2_container\" aria-label=\"移动端页尾\"></footer></div></div></footer>\n\n\n\n\n\n\n  \n  \n\n  \n  \n  \n\n\n  \n  \n  \n  \n  \n\n\n\n\n\n\n\n\n\n</body></html>",
    "links": {
    "internal": [
    {
    "href": "https://www.aliyun.com/service/supportplans",
    "text": "Enterprise Support Plans",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/price/cpq/list",
    "text": "Pricing Calculator",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/solution/tech-solution/",
    "text": "Solutions",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/benefit",
    "text": "Benefits",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/2837300.html",
    "text": "Product Overview",
    "title": ""
    },
    {
    "href": "https://university.aliyun.com/",
    "text": "Academic Program",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/product/tongyi",
    "text": "Models",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/about",
    "text": "About",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/why-us/security-compliance",
    "text": "Security & Compliance",
    "title": ""
    },
    {
    "href": "https://beian.aliyun.com/",
    "text": "ICP Filing",
    "title": ""
    },
    {
    "href": "https://careers.aliyun.com/",
    "text": "Careers",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/2880197.html",
    "text": "Quick start",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/why-us/leading-technology",
    "text": "Technology Leadership",
    "title": ""
    },
    {
    "href": "https://status.aliyun.com/",
    "text": "Status Dashboard",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/",
    "text": "Docs",
    "title": ""
    },
    {
    "href": "https://infrastructure.aliyun.com/",
    "text": "Global Infrastructure",
    "title": ""
    },
    {
    "href": "https://security.aliyun.com/trust-center",
    "text": "Trust Center",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/analyst-reports",
    "text": "Analyst Reports",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/2837265.html",
    "text": "Use Cases",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/my_favorites.html",
    "text": "my favorites",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/why-us/reliability",
    "text": "Stability & Reliability",
    "title": ""
    },
    {
    "href": "https://edu.aliyun.com/",
    "text": "Alibaba Cloud Certification",
    "title": ""
    },
    {
    "href": "https://home.console.aliyun.com/home/dashboard/ProductAndService",
    "text": "Console",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/service/devopsimpl/devopsimpl_cloudmigration_public_cn",
    "text": "Cloud Migration Services",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/notice/",
    "text": "Service Notices",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/price/cost-management",
    "text": "Cost Management",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/product/iqs",
    "text": "product details",
    "title": ""
    },
    {
    "href": "https://dashi.aliyun.com/?ambRef=shouYeDaoHang2&pageCode=yunparterIndex",
    "text": "Referral Program",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/contact",
    "text": "Contact Us",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/service",
    "text": "Services",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/2870241.html",
    "text": "Support",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/solution/tech-solution",
    "text": "Solutions",
    "title": ""
    },
    {
    "href": "https://developer.aliyun.com/",
    "text": "Community",
    "title": ""
    },
    {
    "href": "https://tianchi.aliyun.com/",
    "text": "Tianchi Competitions",
    "title": ""
    },
    {
    "href": "https://partner.aliyun.com/management/v2",
    "text": "Partners",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/about/what-is-cloud-computing",
    "text": "What is Cloud Computing",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/2880836.html",
    "text": "Billing",
    "title": ""
    },
    {
    "href": "https://free.aliyun.com/",
    "text": "Free Trials",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/solution/free",
    "text": "Solution Trials",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/benefit/form/index",
    "text": "Computing Subsidy",
    "title": ""
    },
    {
    "href": "https://wanwang.aliyun.com/",
    "text": "HiChina",
    "title": ""
    },
    {
    "href": "https://bailian.console.aliyun.com/app-center?tab=app#/app-center",
    "text": "AI Application Development",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/price",
    "text": "Pricing",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/product/list",
    "text": "Products",
    "title": ""
    },
    {
    "href": "https://bailian.console.aliyun.com/?tab=model#/model-market",
    "text": "Model Services",
    "title": ""
    },
    {
    "href": "https://market.aliyun.com/",
    "text": "Marketplace",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/zh",
    "text": "documentation",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/en/document_detail/3000049.html",
    "text": "Developer reference",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/product/news/",
    "text": "Product Updates",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/",
    "text": "",
    "title": ""
    },
    {
    "href": "https://www.aliyun.com/price/detail",
    "text": "Pricing",
    "title": ""
    },
    {
    "href": "https://help.aliyun.com/product/67275.html",
    "text": "Legal Notice",
    "title": ""
    },
    {
    "href": "https://report.aliyun.com/",
    "text": "Security Reporting",
    "title": ""
    }
    ],
    "external": [
    {
    "href": "https://www.umeng.com/",
    "text": "Umeng",
    "title": ""
    },
    {
    "href": "https://www.alimama.com/index.htm",
    "text": "Alimama",
    "title": ""
    },
    {
    "href": "https://mobile.amap.com/",
    "text": "Amap",
    "title": ""
    },
    {
    "href": "https://www.fliggy.com/",
    "text": "Fliggy",
    "title": ""
    },
    {
    "href": "https://www.taobao.com/",
    "text": "Taobao",
    "title": ""
    },
    {
    "href": "https://aliyun.jubao.alibaba.com/",
    "text": "Integrity Reporting",
    "title": ""
    },
    {
    "href": "https://www.aliyundrive.com/",
    "text": "Alibaba Cloud Drive",
    "title": ""
    },
    {
    "href": "https://www.youku.com/",
    "text": "Youku",
    "title": ""
    },
    {
    "href": "https://www.dingtalk.com/",
    "text": "DingTalk",
    "title": ""
    },
    {
    "href": "https://www.aliexpress.com/",
    "text": "AliExpress",
    "title": ""
    },
    {
    "href": "https://damo.alibaba.com/",
    "text": "DAMO Academy",
    "title": ""
    },
    {
    "href": "https://www.uc.cn/",
    "text": "UC",
    "title": ""
    },
    {
    "href": "https://terms.alicdn.com/legal-agreement/terms/platform_service/20220906101446934/20220906101446934.html",
    "text": "Cookie Policy",
    "title": ""
    },
    {
    "href": "https://www.ele.me/",
    "text": "Taobao Flash Sale",
    "title": ""
    },
    {
    "href": "https://domain.miit.gov.cn/%E5%9F%9F%E5%90%8D%E6%B3%A8%E5%86%8C%E6%9C%8D%E5%8A%A1%E6%9C%BA%E6%9E%84/%E4%BA%92%E8%81%94%E7%BD%91%E5%9F%9F%E5%90%8D/%E9%98%BF%E9%87%8C%E4%BA%91%E8%AE%A1%E7%AE%97%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8",
    "text": "Zhe D3-20210002",
    "title": ""
    },
    {
    "href": "https://www.alibaba.com/",
    "text": "Alibaba International",
    "title": ""
    },
    {
    "href": "https://www.1688.com/",
    "text": "1688",
    "title": ""
    },
    {
    "href": "https://www.alibabagroup.com/cn/global/home",
    "text": "Alibaba Group",
    "title": ""
    },
    {
    "href": "https://www.alipay.com/",
    "text": "Alipay",
    "title": ""
    },
    {
    "href": "https://www.tmall.com/",
    "text": "Tmall",
    "title": ""
    },
    {
    "href": "https://world.taobao.com/",
    "text": "Taobao Global",
    "title": ""
    },
    {
    "href": "http://beian.miit.gov.cn/",
    "text": "Zhe B2-20080101",
    "title": ""
    },
    {
    "href": "https://zzlz.gsxt.gov.cn/businessCheck/verifKey.do?showType=p&serial=91330106673959654P-SAIC_SHOW_10000091330106673959654P1710919400712&signData=MEUCIQDEkCd8cK7%2Fyqe6BNMWvoMPtAnsgKa7FZetfPkjZMsvhAIgOX1G9YC6FKyndE7o7hL0KaBVn4f%20V%2Fiof3iAgpsV09o%3D",
    "text": "",
    "title": ""
    },
    {
    "href": "http://www.beian.gov.cn/portal/registerSystemInfo",
    "text": "Zhejiang Public Security Bureau Record No. 33010602009975",
    "title": ""
    },
    {
    "href": "https://beian.miit.gov.cn/",
    "text": "Zhejiang B2-20080101-4",
    "title": ""
    }
    ]
    },
    "markdown": "[Models](https://www.aliyun.com/product/tongyi) [Products](https://www.aliyun.com/product/list) [Solutions](https://www.aliyun.com/solution/tech-solution/) [Benefits](https://www.aliyun.com/benefit) [Pricing](https://www.aliyun.com/price) [Marketplace](https://market.aliyun.com/) [Partners](https://partner.aliyun.com/management/v2) [Services](https://www.aliyun.com/service) [About](https://www.aliyun.com/about) [Docs](https://help.aliyun.com/) [ICP Filing](https://beian.aliyun.com/) [Console](https://home.console.aliyun.com/home/dashboard/ProductAndService) [官方文档](/zh)\n\n- [Product Overview](/en/document_detail/2837300.html)\n- [Billing](/en/document_detail/2880836.html)\n- [Quick start](/en/document_detail/2880197.html)\n- [Use Cases](/en/document_detail/2837265.html)\n- [Developer reference](/en/document_detail/3000049.html)\n- [Support](/en/document_detail/2870241.html)\n\n[首页](/zh)\n\n# WebSearch\n\n更新时间: [产品详情](https://www.aliyun.com/product/iqs) [我的收藏](/my_favorites.html) 该文章对您有帮助吗?\n\n### Why Choose Alibaba Cloud\n\n[What is Cloud Computing](https://www.aliyun.com/about/what-is-cloud-computing) [Global Infrastructure](https://infrastructure.aliyun.com/) [Technology Leadership](https://www.aliyun.com/why-us/leading-technology) [Stability & Reliability](https://www.aliyun.com/why-us/reliability) [Security & Compliance](https://www.aliyun.com/why-us/security-compliance) [Analyst Reports](https://www.aliyun.com/analyst-reports)\n\n### Models\n\n[Qwen Series](https://www.aliyun.com/product/tongyi) [Model Services](https://bailian.console.aliyun.com/?tab=model#/model-market) [AI Application Development](https://bailian.console.aliyun.com/app-center?tab=app#/app-center)\n\n### Products & Pricing\n\n[All Products](https://www.aliyun.com/product/list) [Free Trials](https://free.aliyun.com/) [Product Updates](https://www.aliyun.com/product/news/) [Pricing](https://www.aliyun.com/price/detail) [Pricing Calculator](https://www.aliyun.com/price/cpq/list) [Cost Management](https://www.aliyun.com/price/cost-management)\n\n### Technical Resources\n\n[Solutions](https://www.aliyun.com/solution/tech-solution) [Documentation](https://help.aliyun.com/) [Community](https://developer.aliyun.com/) [Tianchi Competitions](https://tianchi.aliyun.com/) [Alibaba Cloud Certification](https://edu.aliyun.com/)\n\n### Benefits\n\n[Free Trials](https://free.aliyun.com/) [Solution Trials](https://www.aliyun.com/solution/free) [Academic Program](https://university.aliyun.com/) [Computing Subsidy](https://www.aliyun.com/benefit/form/index) [Referral Program](https://dashi.aliyun.com/?ambRef=shouYeDaoHang2&pageCode=yunparterIndex)\n\n### Support\n\n[24/7 Support](https://www.aliyun.com/service) [Enterprise Support Plans](https://www.aliyun.com/service/supportplans) [Cloud Migration Services](https://www.aliyun.com/service/devopsimpl/devopsimpl_cloudmigration_public_cn) [Service Notices](https://www.aliyun.com/notice/) [Status Dashboard](https://status.aliyun.com/) [Trust Center](https://security.aliyun.com/trust-center)\n\n### Follow Us\n\nFollow the Alibaba Cloud official account or download the app to stay updated. Manage and monitor your cloud services anytime, anywhere.\n\n![Alibaba Cloud app](https://img.alicdn.com/imgextra/i4/O1CN01XLesV31fkf7pYNATb_!!6000000004045-2-tps-400-400.png) ![Alibaba Cloud WeChat](https://img.alicdn.com/tfs/TB1AOdINW6qK1RjSZFmXXX0PFXa-258-258.jpg)\n\nContact us: 4008013260\n\n[Legal Notice](https://help.aliyun.com/product/67275.html) [Cookie Policy](https://terms.alicdn.com/legal-agreement/terms/platform_service/20220906101446934/20220906101446934.html) [Integrity Reporting](https://aliyun.jubao.alibaba.com/) [Security Reporting](https://report.aliyun.com/) [Contact Us](https://www.aliyun.com/contact) [Careers](https://careers.aliyun.com/) [Alibaba Group](https://www.alibabagroup.com/cn/global/home) [Taobao](https://www.taobao.com/) [Tmall](https://www.tmall.com/) [AliExpress](https://www.aliexpress.com/) [Alibaba International](https://www.alibaba.com/) [1688](https://www.1688.com/) [Alimama](https://www.alimama.com/index.htm) [Fliggy](https://www.fliggy.com/) [Alibaba Cloud](https://www.aliyun.com/) [HiChina](https://wanwang.aliyun.com/) [Amap](https://mobile.amap.com/) [UC](https://www.uc.cn/) [Umeng](https://www.umeng.com/) [Youku](https://www.youku.com/) [DingTalk](https://www.dingtalk.com/) [Alipay](https://www.alipay.com/) [DAMO Academy](https://damo.alibaba.com/) [Taobao Global](https://world.taobao.com/) [Alibaba Cloud Drive](https://www.aliyundrive.com/) [Taobao Flash Sale](https://www.ele.me/)\n\n© 2009- Present Aliyun.com. All rights reserved. alue-Added Telecommunications Business Operating License: Domain Name Registration Service Provider License: Zhe B2-20080101Zhe D3-20210002\n\n[![](//gw.alicdn.com/tfs/TB1GxwdSXXXXXa.aXXXXXXXXXXX-65-70.gif)](https://zzlz.gsxt.gov.cn/businessCheck/verifKey.do?showType=p&serial=91330106673959654P-SAIC_SHOW_10000091330106673959654P1710919400712&signData=MEUCIQDEkCd8cK7%2Fyqe6BNMWvoMPtAnsgKa7FZetfPkjZMsvhAIgOX1G9YC6FKyndE7o7hL0KaBVn4f%20V%2Fiof3iAgpsV09o%3D)[![Zhejiang Public Security Bureau Record No. 33010602009975](//img.alicdn.com/tfs/TB1..50QpXXXXX7XpXXXXXXXXXX-40-40.png) Zhejiang Public Security Bureau Record No. 33010602009975](http://www.beian.gov.cn/portal/registerSystemInfo)[Zhejiang B2-20080101-4](https://beian.miit.gov.cn/)",
    "media": {
    "images": [
    {
    "src": "https://img.alicdn.com/imgextra/i4/O1CN01XLesV31fkf7pYNATb_!!6000000004045-2-tps-400-400.png",
    "alt": "Alibaba Cloud app",
    "format": "png"
    },
    {
    "src": "https://img.alicdn.com/tfs/TB1AOdINW6qK1RjSZFmXXX0PFXa-258-258.jpg",
    "alt": "Alibaba Cloud WeChat",
    "format": "jpg"
    }
    ],
    "audios": [],
    "videos": []
    },
    "metadata": {
    "pageType": "article",
    "canonicalUrl": "https://help.aliyun.com/en/document_detail/2837301.html",
    "pdfParse": false,
    "imageUrl": "https://img.alicdn.com/imgextra/i1/O1CN012QgtoH1c1Mu70xD3w_!!6000000003540-2-tps-640-640.png",
    "schemaType": "WebPage",
    "siteName": "Alibaba Cloud",
    "redirectedUrl": "https://help.aliyun.com/en/document_detail/2837301.html?spm=a2c4g.11186623.help-menu-2837261.d_0_0_0.59ed3e95CppOt2&scm=20140722.H_2837301._.OR_help-T_cn~zh-V_1",
    "language": "en",
    "lastModified": "2026-04-16T04:50:16+08:00",
    "title": "Alibaba Cloud's WebSearch is a general-purpose, open-domain search solution for large models. It integrates multi-dimensional data sources, delivers millisecond-level responses, and intelligently optimizes real-time Q&amp;A for greater efficiency and accuracy.-阿里云帮助中心",
    "contentType": "text/html;charset=utf-8",
    "url": "https://help.aliyun.com/document_detail/2837301.html?spm=a2c4g.11186623.help-menu-2837261.d_0_0_0.59ed3e95CppOt2&scm=20140722.H_2837301._.OR_help-T_cn~zh-V_1"
    },
    "statusCode": 200,
    "text": "Models Products Solutions Benefits Pricing Marketplace Partners Services About Docs ICP Filing Console documentation\n\nProduct Overview\nBilling\nQuick start\nUse Cases\nDeveloper reference\nSupport\n\nhome\n\nWebSearch\n\nUpdate Time: product details my favorites Is this article helpful to you?\n\nWhy Choose Alibaba Cloud\n\nWhat is Cloud Computing Global Infrastructure Technology Leadership Stability & Reliability Security & Compliance Analyst Reports\n\nModels\n\nQwen Series Model Services AI Application Development\n\nProducts & Pricing\n\nAll Products Free Trials Product Updates Pricing Pricing Calculator Cost Management\n\nTechnical Resources\n\nSolutions Documentation Community Tianchi Competitions Alibaba Cloud Certification\n\nBenefits\n\nFree Trials Solution Trials Academic Program Computing Subsidy Referral Program\n\nSupport\n\n24/7 Support Enterprise Support Plans Cloud Migration Services Service Notices Status Dashboard Trust Center\n\nFollow Us\n\nFollow the Alibaba Cloud official account or download the app to stay updated. Manage and monitor your cloud services anytime, anywhere.\n\n!Alibaba Cloud app !Alibaba Cloud WeChat\n\nContact us: 4008013260\n\nLegal Notice Cookie Policy Integrity Reporting Security Reporting Contact Us Careers Alibaba Group Taobao Tmall AliExpress Alibaba International 1688 Alimama Fliggy Alibaba Cloud HiChina Amap UC Umeng Youku DingTalk Alipay DAMO Academy Taobao Global Alibaba Cloud Drive Taobao Flash Sale\n\n© 2009- Present Aliyun.com. All rights reserved. alue-Added Telecommunications Business Operating License: Domain Name Registration Service Provider License: Zhe B2-20080101Zhe D3-20210002\n\n![](//gw.alicdn.com/tfs/TB1GxwdSXXXXXa.aXXXXXXXXXXX-65-70.gif)![Zhejiang Public Security Bureau Record No. 33010602009975](//img.alicdn.com/tfs/TB1..50QpXXXXX7XpXXXXXXXXXX-40-40.png) Zhejiang Public Security Bureau Record No. 33010602009975Zhejiang B2-20080101-4"
    },
    "requestId": "6eb2e05e-0fc2-4494-9b8e-da39e0a4cf1c"
}