# 快速入门

在开始之前，请确保您已从销售代表、专属客户经理或支持团队处收到用户名、密码以及所有指向您的 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 示例展示了这一点。您可以在其他语言中找到更多代码示例 [**这里**](https://developers.oxylabs.io/documentation/cn/dai-li/dedicated-datacenter-proxies/enterprise/making-requests) 或在我们的完整示例中查看 [**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).
