Contact Us
If you still have questions or prefer to get help directly from an agent, please submit a request.
Popular topics: Multilogin X, Multilogin 6,
-
Retrieving the token Using the automation token in a workspace Retrieving profile, folder, and workspace IDs Retrieving the user ID Selenium automation example Playwright automation example Puppeteer automation example Logging in to Multilogin automatically Setting up automatic cookie collection Auto-launching the agent Converting external proxy lists into API-ready JSON files Automation FAQ
-
Error: Failed to get IP data: can't connect through proxy Error: Javax.crypto.badpaddingexception: pad block corrupted Status: Update in progress...Loading (1) of 2 components Error: Fingerprint composition failed Connection error due to non-Latin characters in Windows username Error: Mimic/Stealthfox executable is not found Multilogin 6 browser profile shows "Error" in status Can't launch a profile in Multilogin 6 Common errors and solutions in Multilogin 6
Automation FAQ
Written by Lena Karavaeva
Updated on August 23rd, 2024
Table of contents
Can I change the start page?
Start URL
You can set your own start URL and add more links to open when you launch a profile. You can choose to open them only on the first launch or on every launch.
- In the UI: Find this feature in the profile settings under the "Essentials" tab
-
In the API: Use the
custom_start_urls
parameter for regular and quick profiles
Note that websites cannot see if you have visited our checker page. They can only access cookies belonging to their own domain. This means that only multilogin.com can see its own cookies. This is known as the "Same-origin policy," which has been in place since the first browsers were created.
Can I create profiles in bulk?
To create multiple profiles at once, use the times
parameter and specify the required number of profiles (up to 10 at a time).
Can I minimize proxy traffic usage?
Using too much proxy data can slow down your network and affect performance. To tackle this, you can specify certain URLs where proxy traffic won't be routed, reducing data usage and improving network speed.
These custom arguments will help you define a list of websites where a proxy won’t be used.
Mimic
Find the original description of this argument here.
{
"name": "<string>",
"profile_id": "<string>",
"notes": "<string>",
"proxy": ...,
"parameters": {
...,
"fingerprint": {
...,
"cmd_params": {
"params": [
{
"flag": "proxy-bypass-list",
"value": "host1;host2;host3"
}
]
}
}
}
Stealthfox
Find the original description of this argument here.
{
"name": "<string>",
"profile_id": "<string>",
"notes": "<string>",
"proxy": ...,
"parameters": {
...,
"fingerprint": {
...,
"cmd_params": {
"params": [
{
"flag": "network.proxy.no_proxies_on",
"value": "host1, host2, host3"
}
]
}
}
}