Linkedin Session Cookies avatar
Linkedin Session Cookies
Try for free

7 days trial then $10.00/month - No credit card required now

View all Actors
Linkedin Session Cookies

Linkedin Session Cookies

big-brain.io/linkedin-session-cookies
Try for free

7 days trial then $10.00/month - No credit card required now

Get your Linkedin session cookies to automatically update Phantombuster, TexAu and Growth-Hacking.io. Scale to multiple Linkedin accounts.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "proxyConfiguration": {
11        "useApifyProxy": true
12    },
13    "imap": {
14        "user": "",
15        "password": "",
16        "host": "imap.gmail.com",
17        "port": 993,
18        "tls": true,
19        "mailbox": "INBOX"
20    }
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("big-brain.io/linkedin-session-cookies").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    const { items } = await client.dataset(run.defaultDatasetId).listItems();
30    items.forEach((item) => {
31        console.dir(item);
32    });
33})();
Developer
Maintained by Community
Actor metrics
  • 1 monthly users
  • 0.0% runs succeeded
  • 0.0 days response time
  • Created in Mar 2021
  • Modified over 1 year ago