An tool for getting site cookie from your browser.
When you write a script for scraping some data, you may need the cookie of the site. Instead of copying cookie string from Browser, you can use the std output of this tool.
js
const { execSync } = require('child_process');
let site = 'bing.com';
const cookie = execSync(`gcookie ${site}`).toString();
python
from subprocess import check_output
site = 'bing.com'
cookie = check_output(['gcookie', '-c', 'Edge', site]).decode("utf-8")
This package bertrandom/chrome-cookies-secure depends on win-dpapi
.
win-dpapi
based on an older version of node-gyp is diffcult to install on Windows.
This tools can export all of the data. In my case, I just want to a single site's cookie.
Firefox, Chrome, Edge, Chromium
Firefox
download the release for your system and run the binary
```text
Usage: gcookie [OPTIONS]
```
gcookie -h
print help infomation.
```shell
gcookie "google.com" 1P_JAR=2022-07-20-12; APISID=xxxyyyyy
gcookie -c Edge "bing.com"
gcookie -f /path/to/profiles/xx.p "bing.com"
gcookie -p /path/to/User Data/Default "bing.com" ```
Add this to your Cargo.toml
toml
[dependencies]
gcookie = "*"
get cookie by Chrome
```Rust let site = "http://cn.bing.com"; let cookie = gcookie::gcookie_chrome(site, None, None);
let site = "bing.com"; let browser = Some("Edge"); let cookie = gcookie::gcookiechrome(site, browser, None); assert!(cookie.isok()); ```
```shell git clone https://github.com/22earth/gcookie
cd gcookie cargo build
cargo test
cargo install --path . ```