當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python clx.osi.slashnext.SlashNextClient.download_screenshot用法及代碼示例


用法:

download_screenshot(scanid, resolution='high')

根據先前的 URL 掃描請求下載網頁的屏幕截圖。

參數

  • scanid(str) - 要獲取報告的掃描的掃描 ID。可以從 “slashnext-url-scan” 操作或 “slashnext-url-scan-sync” 操作中檢索。
  • resolution(str) - 網頁截圖的分辨率。可以是“high” or “medium”。默認為“high”。

:return 查詢響應作為列表。 :rtype: 列表

例子

>>> from clx.osi.slashnext import SlashNextClient
>>> api_key = 'slashnext_cloud_apikey'
>>> snx_ir_workspace_dir = 'snx_ir_workspace'
>>> slashnext = SlashNextClient(api_key, snx_ir_workspace_dir)
>>> response_list = slashnext.download_screenshot('2-ba57-755a7458c8a3')
>>> type(response_list[0])
<class 'dict'>

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.osi.slashnext.SlashNextClient.download_screenshot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。