Is there an easy way to import json cookies into jarvee? I remember there used to be but now the cookies are jarvee specific.
I also have the same question. I have bought some scrapers and they gave me something likes:
username|password|mid=YSWXCAABAAGw668muqDH8pizpL8C; ig_did=61D47627-D59C-428B-B3CB-DC8D176CD931; ig_nrcb=1;…
I don’t know how to import the third one (cookie) to Jarvee.
Would be good if jarvee added more options for cookies. Api and json.
yeah, that would be great. I used to use a chrome extension called cookies editor to log in to the ig account that I bought by entering the cookies values manually, once i’m logged in i export the cookies, then import it in JV.
I don’t remember jarvee had this option. Was it in Advanced settings?
It was written in the text on the menu -Import cookies from json
This was over a year ago though like version 2.4 maybe. Didn’t know what json was back then
Hi @heroeslair,
Have you sent an email to Jarvee supporter to ask for this yet?
I sent them an email and they supported me on this well.
I need to prepare a text file with json format content, then import the file to JV.
It is working for me.
Yeah, the issue is that I want to import 100+ at a time. So, would be so time consuming to do that.
Do you know coding? If yes, it’s just a minutes.
Nope lol. Wish I did.
Just using other accounts instead
Send me a DM, I need your input and your expected output to check if I can help.
@heroeslair did you figure this out. I’m looking to import 100+ account as well, the cookies on the files are in the JSON. I can upload using a CSV file but I’m not how to adjust the Json format to be compatible with jarvee.
Any lead here would be great!
The format is the following:
name1=value1;name2=value2;name3=value3
So for this:
[
{
"name": "csrftoken",
"value": "DHzoGNOWoWH2kaIKuMa8HsUooGgYQodS",
"path": "/",
"secure": true,
"httpOnly": false,
"domain": ".instagram.com",
"url": "https://www.instagram.com",
"expires": "2024-10-11T09:25:44.578Z"
},
{
"name": "mid",
"value": "ZSPM-gABAAEFogpXIMi3sawLVHgG",
"path": "/",
"secure": true,
"httpOnly": false,
"domain": ".instagram.com",
"url": "https://www.instagram.com",
"expires": "2024-11-16T09:25:14.83Z"
},
{
"name": "ig_did",
"value": "B5AB10PA-6D2D-441A-90F0-AC4LC07603C8",
"path": "/",
"secure": true,
"httpOnly": true,
"domain": ".instagram.com",
"url": "https://www.instagram.com",
"expires": "2024-10-12T09:25:44.578Z"
}
]
The correct API cookies string to import is:
csrftoken=DHzoGNOWoWH2kaIKuMa8HsUooGgYQodS;name=ZSPM-gABAAEFogpXIMi3sawLVHgG;ig_did=B5AB10PA-6D2D-441A-90F0-AC4LC07603C8
so the other values in JSON don’t port over in any way?