powershell获取商品标题

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell获取商品标题相关的知识,希望对你有一定的参考价值。

实现效果:

  技术图片

实现代码:

function Get-ItemList($page)


    $url_login=‘http://******.***.lcweb03.cn/master_72gs5v‘
    $url_info=‘http://******.***.lcweb03.cn/goods/index?shop_type=1&page=‘+$page

    $headers = @
    ‘Accept‘=‘application/json, text/javascript, */*; q=0.01‘;
    ‘User-Agent‘=‘Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/74.0.3729.108 Safari/537.36#add cookie 
    ‘Cookie‘=‘workspaceParam=0%7C1%7Cgoods%2Findex; phpSESSID=uc3jr6r87oun5pbrljip1lddr9‘
    

    $headers_2 = @
    ‘Cookie‘=‘PHPSESSID=uc3jr6r87oun5pbrljip1lddr9‘
    

    $date[email protected]
    nickname=‘username‘;
    password=‘passworld‘
    
    $null=[void]Invoke-RestMethod -Uri $url_login -Method Post -Body $date -Headers $headers -SessionVariable session
    $con=Invoke-RestMethod -Uri $url_info -Method Get -Headers $headers_2 -WebSession $session
            $a=([regex]::Matches($con,‘<div class="name-div" title=(.*?)>‘))
    $a=[regex]::Matches($con,‘<div class="name-div" title=(.*?)>‘)
    [regex]::Replace($a.groups.GetEnumerator().value,‘<div class="name-div" title=(.*?)>‘,‘‘)

 

以上是关于powershell获取商品标题的主要内容,如果未能解决你的问题,请参考以下文章

Create AD Users by Powershel_v1.0

powershell获取商品标题

在远程服务器上使用 PowerShell 安装证书

是否可以/如何使用某些 cmdlet 停止 powershell?

我们可以查看 PowerShell cmdlet 的源代码吗?

使用powershell提权的一些技巧