skillshare-downloader icon indicating copy to clipboard operation
skillshare-downloader copied to clipboard

Updated Readme and Fixed Error

Open CodingButter opened this issue 2 years ago • 2 comments

Updated the readme to clarify how to use the cookie. Fixed Array issue from data response

CodingButter avatar Jul 28 '22 21:07 CodingButter

I tried a few things things to fix my issue which was "Failed to fetch video meta" so not entirely sure what helped but the final touch was getting the cookie from the Network Tab as opposed to document.cookie. I also did the following:

1

did this:

                if 'video_hashed_id' in s and s['video_hashed_id']:
                    video_id = s['video_hashed_id'].split(':')[1]
                elif 'video_thumbnail_url' in s and s['video_thumbnail_url']:
                    video_id = s['video_thumbnail_url'].split('/')[6]

instead of just:

                if 'video_hashed_id' in s and s['video_hashed_id']:
                    video_id = s['video_hashed_id'].split(':')[1]

2

Commented out the if not video_id block.

rasulkireev avatar Feb 03 '23 18:02 rasulkireev

i still get the same problem how can fix that

jayediqbalasif avatar Jan 05 '24 13:01 jayediqbalasif