> For the complete documentation index, see [llms.txt](https://developers.oxylabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.oxylabs.io/products/cn/dai-li/dedicated-datacenter-proxies/enterprise.md).

# 企业版

{% hint style="info" %}
企业文档适用于通过我们的销售团队购买的独享数据中心代理。&#x20;
{% endhint %}

在开始之前，请确保您已从销售代表、专属客户经理或支持团队处收到用户名、密码以及所有指向您的IP列表的URL。

您可以通过两种方式获取您的IP列表。您可以通过打开收到的URL（例如， `https://proxy.oxylabs.io/all`）。然后系统会要求您输入登录凭据（HTTP Basic Authentication）。

或者，您可以通过向收到的URL发送 GET 请求来检索该列表（例如， `https://proxy.oxylabs.io/all`）。别忘了将 `USERNAME` 和 `PASSWORD` 替换为您的代理用户凭据。

```shell
curl -u "USERNAME:PASSWORD" https://proxy.oxylabs.io/all
```

要使用代理发送请求，您必须从获取到的列表中选择一个IP地址，并在请求参数中指定它。下面的 cURL 中可以看到示例。您可以在其他语言中找到更多代码示例 [**这里**](/products/cn/dai-li/dedicated-datacenter-proxies/enterprise/making-requests.md) 或查看我们 [**GitHub**](https://github.com/oxylabs/product-integrations/tree/master/datacenter-proxies).

```shell
curl -x 1.2.3.4:60000 -U "USERNAME:PASSWORD" http://ip.oxylabs.io/location
```

如果本文档中有任何我们未涵盖的问题，请联系您的专属客户经理或我们的支持，邮箱： [**support@oxylabs.io**](mailto:support@oxylabs.io).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.oxylabs.io/products/cn/dai-li/dedicated-datacenter-proxies/enterprise.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
