Error with http request in cookie section

in http request in import section i have given the following daa:

curl -X GET “https://www.instagram.com/api/v1/friendships/45739050484/followers/?count=99&search_surface=follow_list_page
-H “authority: www.instagram.com
-H “accept: /”
-H “cookie: ds_user_id=65836760588; datr=b2IGZoZ4xGv34c9IM0_MwiJD; csrftoken=2rdwjan9EGpZg33Wm81GKamivHSgzsR3; sessionid=65836760588%3ALNyvaGyEGwiGCs%3A9%3AAYf_bui5AO6ayRWkoLvt-ENeGZsBsfN5Bt2EQZkBEQ”
-H “referer: (@YOUR_USERNAME) • Instagram photos and videos
-H “x-ig-app-id: 936619743392459”
----and i am getting the error
image

the above code is to get the followers data from instagram

Please make sure your passing those values(cookies,csrf token,…) in double code

yes i have passed the in double codes only mate.

can you send a screenshot where these details are provided in the activity


hi,

can you try using the cookie field in the properties section of the http request.
Each cookie needs to be set individually

can you explain a bit more mate

Upload each cookie as a separate argument

“cookie: ds_user_id=65836760588; datr=b2IGZoZ4xGv34c9IM0_MwiJD; csrftoken=2rdwjan9EGpZg33Wm81GKamivHSgzsR3; sessionid=65836760588%3ALNyvaGyEGwiGCs%3A9%3AAYf_bui5AO6ayRWkoLvt-ENeGZsBsfN5Bt2EQZkBEQ”

Each of your cookie would become a separate value in the collection

1 Like

Could it be that the %3 are encoded question marks (?). Try replacing the string to
sessionid=65836760588?ALNyvaGyEGwiGCs?A9?AAYf_bui5AO6ayRWkoLvt-ENeGZsBsfN5Bt2EQZkBEQ
As well try executing without ds_user_id OR csrftoken OR sessionid. Sometimes it works better without one of them.