YueYue

Results 83 comments of YueYue

;-; it throws me a timeout error ![image](https://user-images.githubusercontent.com/76854136/144695906-f5f9c265-0db8-463c-a814-9046b662c3d0.png)

Well i gave up docker and reseted everything and I set it to startup script. I guess i wont hav to deal with this thing anymore

> watch out sending cookies like this... since they represent you logged in people can impersonate you if they have them... > > youtube does not load Cookies from files......

``` C:\Users\simso\Documents\ytcf\node_modules\miniget\dist\index.js:206 let err = new Miniget.MinigetError(`Status code: ${res.statusCode}`, res.statusCode); ^ MinigetError: Status code: 410 at ClientRequest. (C:\Users\simso\Documents\ytcf\node_modules\miniget\dist\index.js:206:27) at Object.onceWrapper (node:events:510:26) at ClientRequest.emit (node:events:390:28) at HTTPParser.parserOnIncomingClient (node:_http_client:623:27) at HTTPParser.parserOnHeadersComplete (node:_http_common:128:17)...

I was using `${name}=${value}` when that error occur

if i use `${name}:${value}` the error would be ``` throw new UnrecoverableError('Cookie header used in request, but unable to find YouTube identity token'); ^ UnrecoverableError: Cookie header used in request,...

![image](https://user-images.githubusercontent.com/76854136/155248412-ad910260-0a11-4c32-b403-5835e1d266c6.png) Heres my cookie, i used: ```js const cookies = require("./page_cookies.json") const cookieString = cookies.map(({ name, value }) => `${name}:${value}`).join("; ") console.log(cookieString) const ytdl = require("ytdl-core") ytdl("https://www.youtube.com/watch?v=x8VYWazR5mE", { requestOptions: {...