Как использовать Twitter API для Powershell от Linux? - PullRequest
0 голосов
/ 19 января 2020

возможно ли даже использование PSTwitterAPI для Linux?

PS /home/thufir/powershell> 
PS /home/thufir/powershell> ./twitter.ps1
Import-Module : The specified module 'PSTwitterAPI' was not loaded because no valid module file was found in any module directory.
At /home/thufir/powershell/twitter.ps1:1 char:1
+ Import-Module PSTwitterAPI
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : ResourceUnavailable: (PSTwitterAPI:String) [Import-Module], FileNotFoundException
+ FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

execution policy:
Unrestricted

Version
-------
6.2.3

PS /home/thufir/powershell> 
PS /home/thufir/powershell> cat ./twitter.ps1
Import-Module PSTwitterAPI

# Provide Authentication for the Twitter API
# https://twittercommunity.com/t/how-to-get-my-api-key/7033
#Set-TwitterOAuthSettings -ApiKey $env:ApiKey -ApiSecret $env:ApiSecret -AccessToken $env:AccessToken -AccessTokenSecret $env:AccessTokenSecret

# Get user twitter profile
#Get-TwitterUsers_Lookup -screen_name 'mkellerman'


write-host "execution policy:" 
Get-ExecutionPolicy

Get-Host | Select-Object Version
PS /home/thufir/powershell> 

Если да, то как мне импортировать его в систему Linux?

...