1 2 3 4 |
$url="https://twitter.com/i/trends?k=&pc=true&show_context=false&src=search-home" $result = Invoke-WebRequest $url $json=$result.Content | ConvertFrom-Json $json.module_html -split "`n" | Select-String "data-trend-name" |
1 2 3 4 |
$url="https://twitter.com/i/trends?k=&pc=true&show_context=false&src=search-home" $result = Invoke-WebRequest $url $json=$result.Content | ConvertFrom-Json $json.module_html -split "`n" | Select-String "data-trend-name" |