You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some sites, such as https://stocksnap.io download image by sending POST request to a fixed url (in this case https://stocksnap.io/photo/download/) with photoId and _csrf. The csrf token is hidden in the html of each individual site and can be extracted from <input type="hidden" name="_csrf" value="">.
Some sites, such as https://stocksnap.io download image by sending POST request to a fixed url (in this case https://stocksnap.io/photo/download/) with
photoId
and_csrf
. The csrf token is hidden in the html of each individual site and can be extracted from<input type="hidden" name="_csrf" value="">
.How to implement SearchExtractor under the circumstance? Since
job.run()
will iterate overextractor.items()
and dispatch each msg tohandle_url()
, which then calleddownload()
. But It seems theHttpDownloader
is always sending GET request. (see https://github.com/mikf/gallery-dl/blob/master/gallery_dl/downloader/http.py#L122-L125)The text was updated successfully, but these errors were encountered: