> ## Documentation Index
> Fetch the complete documentation index at: https://help.decodo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 介绍

> ISP 按IP付费代理高级参数规范以控制您的连接

Decodo 通过单个回连端点和端口提供可自定义的代理访问：`isp.decodo.com:10000`。

要在请求中指定所有代理参数，您可以使用一种方法：[**用户名和密码**](https://help.decodo.com/docs/cn/isp-pay-per-ip-proxy-user-pass-requests)。

<Warning>
  通过**白名单IP**方法进行身份验证时，**ISP 按IP付费**代理**不支持**回连参数。
</Warning>

***

## 可用参数

| 参数        | 示例值  | 描述                                                                                              |
| --------- | ---- | ----------------------------------------------------------------------------------------------- |
| `ip`      | -    | IP地址。您可以从购买的代理IP列表中定位IP地址。                                                                      |
| `country` | `us` | 国家代码。请以两个字符的ISO格式提供。您可以在[**此处**](https://www.iban.com/country-codes)查看大多数ISO国家代码。可用位置取决于您购买的IP。 |

***

## 应用程序支持

### 用户名:密码方法

回连入口节点也可以在各种应用程序中使用。在这种情况下，您需要在**用户名**字段中与用户名一起传递会话的每个参数，如下所示：

`user-username-country-country_code`

在上面的示例中，`username` 代表您的代理用户名，您需要从身份验证部分获取。在 `password` 字段中，您只需输入代理用户的密码。

更多信息请参阅我们的[**用户名:密码请求**](https://help.decodo.com/docs/cn/isp-pay-per-ip-proxy-user-pass-requests)部分。

***

## cURL 示例

要使用这些命令，只需将 `username` 和 `password` 替换为您的代理用户凭据，然后在终端或命令提示符中运行它们。

##### 获取您购买的随机IP，使用轮换会话

<CodeGroup>
  ```shellscript cURL theme={null}
  curl -U "username:password" -x "isp.decodo.com:10000" "https://ip.decodo.com/json"
  ```
</CodeGroup>

##### 从特定位置（在此示例中为美国）获取您购买的IP，使用静态会话

<CodeGroup>
  ```shellscript cURL theme={null}
  curl -U "user-username-country-us:password" -x "isp.decodo.com:10001" "https://ip.decodo.com/json"
  ```
</CodeGroup>

##### 从特定位置（在此示例中为意大利）获取您购买的IP，使用轮换会话

<CodeGroup>
  ```shellscript cURL theme={null}
  curl -U "user-username-country-it:password" -x "isp.decodo.com:10000" "https://ip.decodo.com/json"
  ```
</CodeGroup>

##### 获取您购买的特定IP（在此示例中，IP未指定），使用静态会话

<CodeGroup>
  ```shellscript cURL theme={null}
  curl -U "user-username-ip-x.x.x.x:password" -x "isp.decodo.com:10001" "https://ip.decodo.com/json"
  ```
</CodeGroup>

<Note>
  使用任何回连参数时，您的用户名也被视为参数之一。因此，您需要在指定用户名之前添加 `user-` 前缀，就像所有其他参数一样。
</Note>

***

<Columns cols={2}>
  <Card title="支持" href="https://direct.lc.chat/12092754" cta="让我们聊聊！">
    需要帮助或只是想打个招呼？我们的支持团队全天候为您服务。 \
    您也可以随时通过电子邮件 [support@decodo.com](mailto:support@decodo.com) 联系我们。
  </Card>

  <Card title="反馈" href="mailto:feedback@decodo.com" cta="分享反馈">
    找不到您要找的内容？请求一篇文章！ \
    有反馈意见？分享您对我们如何改进的想法。
  </Card>
</Columns>
