当前位置:   article > 正文

快手视频作品评论区提取工具,可提取用户UID,评论内容信息【易语言开源】_易语言 快手wss

易语言 快手wss

这个是之前客户定制的一个工具,我留着没用,然后就把代码直接分享出来,需要COOKIE提取的,成品我不提供,不方便,但是源码是可以给csdn的小伙伴分享的,完整的奥。

下面是完整的易语言源码【仅供学习交流】:

  1. .版本 2
  2. .支持库 spec
  3. .支持库 iext
  4. .支持库 shell
  5. .程序集 窗口程序集_主窗口
  6. .子程序 _主窗口_创建完毕
  7. cookies = YM配置 (“配置”, “cookies”)
  8. ' 获取photoId (“https://v.kuaishou.com/qbL7QY ”)
  9. .子程序 获取photoId, 文本型, , '梦远网络工作室版权所有
  10. .参数 URL, 文本型
  11. .局部变量 局_网址, 文本型
  12. .局部变量 局_方式, 文本型
  13. .局部变量 http, WinInet
  14. .局部变量 局_提交数据, 文本型
  15. .局部变量 局_提交协议头, 文本型
  16. .局部变量 局_结果, 字节集
  17. .局部变量 局_返回, 文本型
  18. .局部变量 photoId, 文本型
  19. ' https://duanwangzhihuanyuan.bmcx.com/web_system/bmcx_com_www/system/file/duanwangzhihuanyuan/get/?ajaxtimestamp=1656819628038
  20. 局_网址 = “https://duanwangzhihuanyuan.bmcx.com/web_system/bmcx_com_www/system/file/duanwangzhihuanyuan/get/?ajaxtimestamp=” + 时间_到时间戳 (取现行时间 (), 假, )
  21. 局_方式 = “POST”
  22. ' turl=https://v.kuaishou.com/qbL7QY
  23. 局_提交数据 = “turl=” + URL + “ ”
  24. http.Auto (真)
  25. http.Open (局_方式, 局_网址)
  26. http.SetRequestHeader (“Accept”, “ */*”, )
  27. http.SetRequestHeader (“Accept-Encoding”, “ gzip, deflate, br”, )
  28. http.SetRequestHeader (“Accept-Language”, “ zh-CN,zh;q=0.9”, )
  29. http.SetRequestHeader (“Connection”, “ keep-alive”, )
  30. http.SetRequestHeader (“Content-Type”, “ application/x-www-form-urlencoded”, )
  31. http.SetRequestHeader (“Host”, “ duanwangzhihuanyuan.bmcx.com”, )
  32. http.SetRequestHeader (“Origin”, “ https://duanwangzhihuanyuan.bmcx.com”, )
  33. http.SetRequestHeader (“Referer”, “ https://duanwangzhihuanyuan.bmcx.com/”, )
  34. http.SetRequestHeader (“Sec-Fetch-Dest”, “ empty”, )
  35. http.SetRequestHeader (“Sec-Fetch-Mode”, “ cors”, )
  36. http.SetRequestHeader (“Sec-Fetch-Site”, “ same-origin”, )
  37. http.SetRequestHeader (“User-Agent”, “ Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 SE 2.X MetaSr 1.0”, )
  38. http.Send (局_提交数据)
  39. 局_结果 = http.GetResponseBody ()
  40. 局_返回 = 到文本 (编码_编码转换对象 (局_结果, , , ))
  41. photoId = 文本_取中间 (局_返回, “&photoId=”, “&shareId=”, , , , )
  42. 调试输出 (“photoId”, photoId)
  43. 返回 (photoId)
  44. ' 返回数据被Gzip压缩,调用命令[网页_Gzip解压]需要[Gzip.dll]文件, 将助手根目录下[\gzip.dll]放到源码的根目录才能正常返回数据
  45. .子程序 _按钮1_被单击
  46. .局部变量 photoid, 文本型
  47. .局部变量 返回数据, 文本型
  48. .局部变量 json, 类_json
  49. .局部变量 json2, 类_json
  50. .局部变量 下一页数据, 文本型
  51. .局部变量 i, 整数型
  52. .局部变量 评论, 文本型
  53. .局部变量 UID加密, 文本型
  54. .局部变量 sy, 整数型
  55. .局部变量 采集评论, 逻辑型
  56. .局部变量 byid, 文本型
  57. .局部变量 name, 文本型
  58. .局部变量 sex, 文本型
  59. .局部变量 avatar, 文本型
  60. .局部变量 originUserId, 文本型
  61. .局部变量 result, 文本型
  62. photoid = 获取photoId (编辑框1.内容)
  63. .如果 (photoid ≠ “”)
  64. ' 置剪辑板文本 (返回数据)
  65. 采集评论 = 真
  66. .判断循环首 (采集评论 = 真)
  67. 返回数据 = 获取数据 (photoid, 下一页数据, cookies)
  68. json.解析 (返回数据, , )
  69. 下一页数据 = json.取通用属性 (“data.visionCommentList.pcursor”, )
  70. .计次循环首 (json.成员数 (“data.visionCommentList.rootComments”), i)
  71. 评论 = json.取通用属性 (“data.visionCommentList.rootComments[” + 到文本 (i - 1) + “].content”, )
  72. UID加密 = json.取通用属性 (“data.visionCommentList.rootComments[” + 到文本 (i - 1) + “].authorId”, )
  73. .计次循环首 (20, ) ' 因为这个获取数据有限制,加上延迟和多次
  74. byid = 取真实uid (UID加密, cookies)
  75. json2.解析 (byid, , )
  76. result = json2.取属性 (“data.result”).取数据文本 ()
  77. name = json2.取通用属性 (“data.userInfo.name”, )
  78. sex = json2.取通用属性 (“data.userInfo.sex”, )
  79. avatar = json2.取通用属性 (“data.userInfo.avatar”, )
  80. originUserId = json2.取属性 (“data.userInfo.originUserId”).取数据文本 ()
  81. json2.清除 ()
  82. .如果真 (result = “1”)
  83. 跳出循环 ()
  84. .如果真结束
  85. 程序_延时 (3000, )
  86. .计次循环尾 ()
  87. 调试输出 (UID加密)
  88. sy = 超级列表框1.插入表项 (, 到文本 (超级列表框1.取表项数 () + 1), , , , )
  89. 超级列表框1.置标题 (sy, 1, name)
  90. 超级列表框1.置标题 (sy, 2, sex)
  91. 超级列表框1.置标题 (sy, 3, UID加密)
  92. 超级列表框1.置标题 (sy, 4, originUserId)
  93. 超级列表框1.置标题 (sy, 5, 评论)
  94. 超级列表框1.保证显示 (sy)
  95. 程序_延时 (50, )
  96. .计次循环尾 ()
  97. 调试输出 (“下一页数据”, 下一页数据)
  98. .如果真 (下一页数据 = “”)
  99. 采集评论 = 假
  100. 跳出循环 ()
  101. .如果真结束
  102. 程序_延时 (100, )
  103. .判断循环尾 ()
  104. 信息框 (“采集完成”, 0, , )
  105. .否则
  106. 信息框 (“获取数据失败”, 0, , )
  107. .如果结束
  108. .子程序 获取数据, 文本型
  109. .参数 photoid, 文本型
  110. .参数 pcursor, 文本型, 可空
  111. .参数 cookie, 文本型
  112. .局部变量 局_网址, 文本型
  113. .局部变量 局_方式, 文本型
  114. .局部变量 http, WinInet
  115. .局部变量 局_提交数据, 文本型
  116. .局部变量 局_提交协议头, 文本型
  117. .局部变量 局_提交cookie, 文本型
  118. .局部变量 局_结果, 字节集
  119. .局部变量 局_返回, 文本型
  120. ' https://www.kuaishou.com/graphql
  121. 局_网址 = “https://www.kuaishou.com/graphql”
  122. 局_方式 = “POST”
  123. ' {"operationName":"commentListQuery","variables":{"photoId":"3xnegrpxs6s7uwy","pcursor":""},"query":"query commentListQuery($photoId: String, $pcursor: String) {\n visionCommentList(photoId: $photoId, pcursor: $pcursor) {\n commentCount\n pcursor\n rootComments {\n commentId\n authorId\n authorName\n content\n headurl\n timestamp\n likedCount\n realLikedCount\n liked\n status\n subCommentCount\n subCommentsPcursor\n subComments {\n commentId\n authorId\n authorName\n content\n headurl\n timestamp\n likedCount\n realLikedCount\n liked\n status\n replyToUserName\n replyTo\n __typename\n }\n __typename\n }\n __typename\n }\n}\n"}
  124. 局_提交数据 = 文本_替换 (#提交数据, , , , “作品”, photoid, “页数”, pcursor, , , , , , )
  125. ' 调试输出 (局_提交数据)
  126. http.Auto (真)
  127. http.Open (局_方式, 局_网址)
  128. http.SetRequestHeader (“accept”, “ */*”, )
  129. http.SetRequestHeader (“Accept-Encoding”, “ gzip, deflate, br”, )
  130. http.SetRequestHeader (“Accept-Language”, “ zh-CN,zh;q=0.9”, )
  131. http.SetRequestHeader (“Connection”, “ keep-alive”, )
  132. http.SetRequestHeader (“Content-Length”, “ ” + 到文本 (取文本长度 (局_提交数据)), )
  133. http.SetRequestHeader (“content-type”, “ application/json”, )
  134. http.SetRequestHeader (“Host”, “ www.kuaishou.com”, )
  135. http.SetRequestHeader (“Origin”, “ https://www.kuaishou.com”, )
  136. ' http.SetRequestHeader (“Referer”, “ https://www.kuaishou.com/short-video/3xnegrpxs6s7uwy?userId=3x9rqfttg98vjik”, ) ' 可有可没有
  137. http.SetRequestHeader (“Sec-Fetch-Dest”, “ empty”, )
  138. http.SetRequestHeader (“Sec-Fetch-Mode”, “ cors”, )
  139. http.SetRequestHeader (“Sec-Fetch-Site”, “ same-origin”, )
  140. http.SetRequestHeader (“User-Agent”, “ Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 SE 2.X MetaSr 1.0”, )
  141. 局_提交cookie = cookie
  142. http.SetCookie (局_提交cookie)
  143. http.Send (局_提交数据)
  144. 局_结果 = http.GetResponseBody ()
  145. 局_返回 = 到文本 (编码_编码转换对象 (局_结果, , , ))
  146. 返回 (局_返回)
  147. ' 返回数据被Gzip压缩,调用命令[网页_Gzip解压]需要[Gzip.dll]文件, 将助手根目录下[\gzip.dll]放到源码的根目录才能正常返回数据
  148. .子程序 取真实uid, 文本型, , 本命令由【精易网页调试助手】生成,请配合 [精易模块] 与 [鱼刺类_Httpv5.0] 使用。
  149. .参数 加密uid, 文本型
  150. .参数 ck, 文本型
  151. .局部变量 局_网址, 文本型
  152. .局部变量 局_方式, 文本型
  153. .局部变量 http, WinInet
  154. .局部变量 局_提交协议头, 文本型
  155. .局部变量 局_提交cookie, 文本型
  156. .局部变量 局_结果, 字节集
  157. .局部变量 局_返回, 文本型
  158. ' https://live.kuaishou.com/live_api/baseuser/userinfo/byid?principalId=3xgei3d2xw65yyq
  159. 局_网址 = “https://live.kuaishou.com/live_api/baseuser/userinfo/byid?principalId=” + 加密uid
  160. 局_方式 = “GET
  161. http.Auto (真)
  162. http.Open (局_方式, 局_网址)
  163. http.SetRequestHeader (“Accept”, “ application/json, text/plain, */*”, )
  164. http.SetRequestHeader (“Accept-Encoding”, “ gzip, deflate, br”, )
  165. http.SetRequestHeader (“Accept-Language”, “ zh-CN,zh;q=0.9”, )
  166. http.SetRequestHeader (“baggage”, “ sentry-environment=prod,sentry-release=e216db5”, )
  167. http.SetRequestHeader (“Connection”, “ keep-alive”, )
  168. http.SetRequestHeader (“Host”, “ live.kuaishou.com”, )
  169. http.SetRequestHeader (“Referer”, “ https://live.kuaishou.com/profile/” + 加密uid, )
  170. http.SetRequestHeader (“Sec-Fetch-Dest”, “ empty”, )
  171. http.SetRequestHeader (“Sec-Fetch-Mode”, “ cors”, )
  172. http.SetRequestHeader (“Sec-Fetch-Site”, “ same-origin”, )
  173. http.SetRequestHeader (“User-Agent”, “ Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36 SE 2.X MetaSr 1.0”, )
  174. 局_提交cookie = ck
  175. http.SetCookie (局_提交cookie)
  176. http.Send ()
  177. 局_结果 = http.GetResponseBody ()
  178. 局_返回 = 到文本 (编码_编码转换对象 (局_结果, , , ))
  179. 调试输出 (局_返回)
  180. 返回 (局_返回)
  181. .子程序 _按钮2_被单击
  182. .如果真 (输入框 (“请输入快手网页版cookies”, “请输入快手网页版cookies”, , cookies, , ))
  183. YM写配置 (“配置”, “cookies”, cookies)
  184. .如果真结束
  185. .子程序 YM写配置
  186. .参数 节名, 文本型
  187. .参数 配置名, 文本型
  188. .参数 值, 文本型
  189. 写配置项 (取特定目录 (#我的文档) + “/amy.ini”, 节名, 配置名, 值)
  190. .子程序 YM配置, 文本型
  191. .参数 节名, 文本型
  192. .参数 配置名, 文本型
  193. 返回 (读配置项 (取特定目录 (#我的文档) + “/amy.ini”, 节名, 配置名, ))

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/542354
推荐阅读
相关标签
  

闽ICP备14008679号