本文介绍 ReadPageBasic 接口,用于静态 web 页面解析,包含接口功能、参数、返回以及接口调用方法。
接口说明
接口功能:
快速获取 HTML 并解析静态网页内容。
若目标地址的响应头中的内容类型(Content-Type)为
application/pdf,系统将自动触发 PDF 解析(pdf 处理大小不超过 20 MB),此操作将额外计为一次有效请求。
接口定义
请求参数
字段 | 参数值 | 说明 | |
url <string> required | 解析的目标地址,必须以 http:// 或 https:// 开头 | ||
pageTimeout <int> | [0, 100000] default:10000 | 等待目标站点完全加载的超时时间,接口将 pageTimeout + 6000ms 内完成
| |
formats <array> | rawHtml html markdown text screenshot default: [ "html", "markdown", "text" ] | 解析结果格式
| |
maxAge <int> | [0, ∞] | 最大缓存时间,单位(秒)。
| |
readability <map> | readabilityMode <string> | none normal article default: none | normal: 基于自研算法,剔除无关信息(页头/页脚,导航等),并返回重点正文内容。 article: 基于自研算法,获取站点主要正文内容(适用于博客、新闻站点,不适用于目录页、导航页) |
excludeAllImages <bool> | default: false | 是否剔除所有图片 | |
excludeAllLinks <bool> | default: false | 是否剔除所有链接 | |
excludedTags <array> | [] | 指定排除的标签,如: ["form", "header", "footer", "nav"] | |
返回参数
字段 | 字段说明 | 样例 | ||
requestId <string> | 请求RequestId, 排查问题时可以提供此信息 | |||
errorCode <string | null> | 错误码 | |||
errorMessage <string | null> | 错误信息 | |||
data <map> | statusCode <int> |
| ||
rawHtml <string | null> | 目标站点原始 html | |||
html <string | null> | 目标站点可读 html | |||
text <string | null> | 文本格式内容 | |||
markdown <string | null> | markdown 格式的内容 | |||
actions <array | null> | actions 对应的执行结果 | | ||
links <map | null> | internal <map|null> | 目标 url 中的链接信息(站内链接)
| | |
external <map|null> | 目标 url 中的链接信息(站外链接) | |||
media <map | null> | images <map|null> | 目标 url 中的图片信息
| | |
audios <array|null> | 目标 url 中的音频信息
| |||
videos <array|null> | 目标 url 中的视频信息
| | ||
metadata <map> | url <string> | 目标地址 | | |
redirectedUrl | 实际重定向后的 URL | |||
title <string|null> | 站点标题 | |||
hostLogo <string|null> | 站点 favicon / logo URL | |||
lastModified <string|null> | 最后修改时间 | |||
publishedDate <string|null> | 发布日期( | |||
contentType <string|null> | HTTP 响应的 | |||
description <string|null> | 页面描述( | |||
author <string|null> | 作者信息( | |||
siteName <string|null> | 站点名称( | |||
imageUrl <string|null> | 主图 URL( | |||
canonicalUrl <string|null> | 规范 URL( | |||
language <string|null> | 页面语言( | |||
schemaType <string|null> | JSON-LD | |||
pageType <string|null> | ||||
pdfParse <bool> | 是否触发 pdf 解析 | |||
错误码
HttpCode | 错误码 | 错误信息 | 处理方案 |
404 | InvalidAccessKeyId.NotFound | Specified access key is not found. | 检查并确保AccessKey/Secret正确。 |
403 | Retrieval.NotActivate | Please activate AI search service | 请下单或联系您的客户经理进行开通。 |
403 | Retrieval.NotAuthorised | Please authorize the AliyunIQSFullAccess privilege to the sub-account. | 子账号没有进行授权,参考创建RAM用户并授权 |
429 | Retrieval.Throttling.User | Request was denied due to user flow control. | 超出限流规格 |
429 | Retrieval.TestUserQueryPerDayExceeded | The query per day exceed the limit. | 测试超出限额(1000次/30天) |
403 | ReadPage.SecurityRestrict | Security restrictions on the target site (e.g., robots.txt). | |
400 | ReadPage.RequestTimeout | Request target url timeout. | 请求超时,适当延长 timeout 时间。 |
429 | ReadPage.RateLimitByDomain | The domain has reached the rate limit. | |
500 | ReadPage.UnknownError | Unknown error. |
接口调用
示例
Python SDK
前提条件
您需要确保已安装Python3.8或以上版本。
安装SDK
pip install alibabacloud_iqs20241111==1.6.0调用代码
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: 使用您的AK/SK进行替换(建议通过环境变量加载)
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 success, 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 exception, requestId:{request_id}, code:{code}, message:{message}")
if __name__ == '__main__':
Sample.main()
Java SDK
前提条件
已安装Java8或以上版本。
Maven依赖
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>iqs20241111</artifactId>
<version>1.6.0</version>
</dependency>调用代码
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: 使用您的AK/SK进行替换(建议通过环境变量加载)
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) {
// 使用 GsonBuilder 创建带格式化的 Gson 实例
Gson gson = new GsonBuilder()
.setPrettyPrinting()
.disableHtmlEscaping()
.create();
// 输出格式化的 JSON
String prettyJson = gson.toJson(output);
System.out.println(prettyJson);
}
}
Go SDK
前提条件
Go 环境版本必须不低于 1.10.x
安装SDK
require (
github.com/alibabacloud-go/iqs-20241111 v1.6.0
)
调用代码
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.com/alibabacloud-go/tea/tea"
)
const endpointURL = "iqs.cn-zhangjiakou.aliyuncs.com"
func createClient() (*iqs20241111.Client, error) {
// TODO: 使用您的AK/SK进行替换
accessKeyID := "YOUR_ACCESS_KEY"
accessKeySecret := "YOUR_ACCESS_SECRET"
if accessKeyID == "" || accessKeySecret == "" {
return nil, fmt.Errorf("ACCESS_KEY or ACCESS_SECRET environment variable is 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("readpage failed: %w", err)
}
fmt.Printf("[%s] response: %s\n", *resp.Body.RequestId, 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("Error running readpage: %v", err)
}
}
HTTP 调用
请求参数(RequestBody)
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
}'返回
{
"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&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></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 & Reliability</a><a class=\"a52e48969cced2d562e47543eeb73ebb_ali-main-services-link\" href=\"https://www.aliyun.com/why-us/security-compliance\" target=\"_blank\">Security & 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 & 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&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&serial=91330106673959654P-SAIC_SHOW_10000091330106673959654P1710919400712&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": "我的收藏",
"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": "产品详情",
"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": "官方文档",
"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 \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-20080101](http://beian.miit.gov.cn/)[Zhe D3-20210002](https://domain.miit.gov.cn/域名注册服务机构/互联网域名/阿里云计算有限公司 )\n\n[](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](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&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 官方文档\n\nProduct Overview\nBilling\nQuick start\nUse Cases\nDeveloper reference\nSupport\n\n首页\n\nWebSearch\n\n更新时间: 产品详情 我的收藏 该文章对您有帮助吗?\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 Zhejiang Public Security Bureau Record No. 33010602009975Zhejiang B2-20080101-4"
},
"requestId": "6eb2e05e-0fc2-4494-9b8e-da39e0a4cf1c"
}