Controlling the duration of your proxy sessions is essential for efficient and secure internet usage.
By creating sessions and providing lifetimes, you can set how long each connection lasts, ensuring uninterrupted and secure activities.
This feature aids in resource management, privacy maintenance, and overall performance enhancement.
lifetime
Parameter3
minutes1440
minutes (24 hours)10
minutesThe lifetime
parameter is measured in minutes. This defines how long the resource remains valid before it expires.
lifetime: 5
→ 5 minuteslifetime: 30
→ 30 minuteslifetime: 60
→ 1 hourlifetime: 180
→ 3 hours (since 3 hours = 180 minutes)Your custom session ID must follow a simple set of rules to be valid. Think of these rules as guidelines to ensure the string is clean, consistent,
and machine-readable.
The first character must be one of the following:
A-Z
)a-z
)0-9
)_
)In simpler terms:
_
).If you’re familiar with regular expressions (regex), here’s what it looks like:
^[A-Za-z0-9_]{1,25}$
This regex ensures:
Proxy session created successfully with the specified lifetime.
The response is of type object
.
Controlling the duration of your proxy sessions is essential for efficient and secure internet usage.
By creating sessions and providing lifetimes, you can set how long each connection lasts, ensuring uninterrupted and secure activities.
This feature aids in resource management, privacy maintenance, and overall performance enhancement.
lifetime
Parameter3
minutes1440
minutes (24 hours)10
minutesThe lifetime
parameter is measured in minutes. This defines how long the resource remains valid before it expires.
lifetime: 5
→ 5 minuteslifetime: 30
→ 30 minuteslifetime: 60
→ 1 hourlifetime: 180
→ 3 hours (since 3 hours = 180 minutes)Your custom session ID must follow a simple set of rules to be valid. Think of these rules as guidelines to ensure the string is clean, consistent,
and machine-readable.
The first character must be one of the following:
A-Z
)a-z
)0-9
)_
)In simpler terms:
_
).If you’re familiar with regular expressions (regex), here’s what it looks like:
^[A-Za-z0-9_]{1,25}$
This regex ensures:
Proxy session created successfully with the specified lifetime.
The response is of type object
.