Luasocket custom headers, 404 turns to 301

前端 未结 2 1075
清歌不尽
清歌不尽 2021-01-23 02:45

My previous question was about fetching page title in lua using the socket.http module. The question lies here. Previously, youtube pages led me to

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-23 03:37

    I believe this line should be changed:

     header = { host= "youtube.com" }
    

    To:

     header = { host= "www.youtube.com" }
    

    After that, works for me.

提交回复
热议问题