Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
要发布到URL的用户powershell脚本?_Url_Powershell - Fatal编程技术网

要发布到URL的用户powershell脚本?

要发布到URL的用户powershell脚本?,url,powershell,Url,Powershell,我继承了以下Python脚本: import urllib2 a = urllib2.urlopen('http://mysite/mypage.aspx?action=dosomething') a.read() a.close() 我想用powershell脚本替换它。 我在谷歌上搜索了一下,但我找到的所有东西都会启动一个浏览器窗口 这个脚本将被安排,所以如果可能的话,我只想“发布并忘记”它 非常感谢您的帮助:)您可以使用.NET中的类,尤其是或。执行一个新对象System.Net.Web

我继承了以下Python脚本:

import urllib2
a = urllib2.urlopen('http://mysite/mypage.aspx?action=dosomething')
a.read()
a.close()
我想用powershell脚本替换它。 我在谷歌上搜索了一下,但我找到的所有东西都会启动一个浏览器窗口

这个脚本将被安排,所以如果可能的话,我只想“发布并忘记”它


非常感谢您的帮助:)

您可以使用.NET中的类,尤其是或。执行一个
新对象System.Net.WebClient
来获取WebClient对象,其余的应该很简单。

函数
urlopen
看起来像HTTP get。然后您可以使用
WebClient

$w = New-Object net.webclient
$w.DownloadString('http://mysite/mypage.aspx?action=dosomething')
对于HTTP POST,我使用以下函数:

function Execute-HTTPPostCommand()
{
  param(
    [string] $url = $null,
    [string] $data = $null,
    [System.Net.NetworkCredential]$credentials = $null,
    [string] $contentType = "application/x-www-form-urlencoded",
    [string] $codePageName = "UTF-8",
    [string] $userAgent = $null
  );

  if ( $url -and $data )
  {
    [System.Net.WebRequest]$webRequest = [System.Net.WebRequest]::Create($url);
    $webRequest.ServicePoint.Expect100Continue = $false;
    if ( $credentials )
    {
      $webRequest.Credentials = $credentials;
      $webRequest.PreAuthenticate = $true;
    }
    $webRequest.ContentType = $contentType;
    $webRequest.Method = "POST";
    if ( $userAgent )
    {
      $webRequest.UserAgent = $userAgent;
    }

    $enc = [System.Text.Encoding]::GetEncoding($codePageName);
    [byte[]]$bytes = $enc.GetBytes($data);
    $webRequest.ContentLength = $bytes.Length;
    [System.IO.Stream]$reqStream = $webRequest.GetRequestStream();
    $reqStream.Write($bytes, 0, $bytes.Length);
    $reqStream.Flush();

    $resp = $webRequest.GetResponse();
    $rs = $resp.GetResponseStream();
    [System.IO.StreamReader]$sr = New-Object System.IO.StreamReader -argumentList $rs;
    $sr.ReadToEnd();
  }
}

这是我不久前写的一个脚本,展示了如何使用地理标签发布推文。这使用WebClient

将代码粘贴到此处以便于参考

Function ByPass-Proxy {
    param ([string]$url)
    $webClient.Proxy.IsBypassed($url)
}

Function Get-GeoCoordinates {
    param ([String]$location)
    $baseURL = "http://maps.google.com/maps/geo?q="
    $apiKey = "Your API Key"
    $url = $baseURL + $location + "&output=xml&sensor=false&key=" + $apiKey
    $locCoords = (([xml]($WebClient.DownloadString($url))).kml.Response.Placemark.Point.coordinates)
    return $locCoords
}

Function Send-Tweet {
    param ([string]$Tweet,[string]$location)
    $geoCoord = Get-GeoCoordinates $location
    $long = $geoCoord.Split(",")[0]
    $lat = $geoCoord.Split(",")[1]
    $TwitURL = "http://twitter.com/statuses/update.xml"
    $WebClient.Credentials = $TwitCredentials
    #$str = [System.Text.Encoding]::UTF8.GetBytes( "status="  + $Tweet + "&lat=" + $lat + "&long=" + $long )
    $str = "status="  + $Tweet + "&lat=" + $lat + "&long=" + $long
    [System.Net.ServicePointManager]::Expect100Continue = $false
    $response = $WebClient.UploadString($TwitURL,$str)
    $response
}

function Get-Credential { 
## Grabbed this from http://poshcode.org/1480

[CmdletBinding(DefaultParameterSetName="Better")]
PARAM(
   [Parameter(Position=1,Mandatory=$false)]
   [Alias("Credential")]
   [PSObject]$UserName=$null,
   [Parameter(Position=2,Mandatory=$false)]
   [string]$Title=$null,
   [Parameter(Position=3,Mandatory=$false)]
   [string]$Message=$null,
   [Parameter(Position=4,Mandatory=$false)]
   [string]$Domain=$null,
   [Parameter(Mandatory=$false)]
   [switch]$GenericCredentials,
   [Parameter(Mandatory=$false)]
   [switch]$Inline
)

PROCESS {
   if( $UserName -is [System.Management.Automation.PSCredential]) {
      return $UserName
   } elseif($UserName -ne $null) {
      $UserName = $UserName.ToString()
   }

   if($Inline) {
      if($Title)    { Write-Host $Title }
      if($Message)  { Write-Host $Message }
      if($Domain) { 
         if($UserName -and $UserName -notmatch "[@\\]") { 
            $UserName = "${Domain}\${UserName}"
         }
      }
      if(!$UserName) {
         $UserName = Read-Host "User"
         if(($Domain -OR !$GenericCredentials) -and $UserName -notmatch "[@\\]") {
            $UserName = "${Domain}\${UserName}"
         }
      }
      return New-Object System.Management.Automation.PSCredential $UserName,$(Read-Host "Password for user $UserName" -AsSecureString)
   }
   if($GenericCredentials) { $Credential = "Generic" } else { $Credential = "Domain" }

   ## Now call the Host.UI method ... if they don't have one, we'll die, yay.
   ## BugBug? PowerShell.exe disregards the last parameter
   $Host.UI.PromptForCredential($Title, $Message, $UserName, $Domain, $Credential,"Default")
}
}

$global:webClient = New-Object System.Net.WebClient
$global:TwitCredentials = Get-Credential -title "Twitter Credentials" -message "Please enter your Twitter username/password"
If (!(ByPass-Proxy "http://www.twitter.com")) {
    $global:Webclient.proxy.Credentials = Get-Credential -title "Proxy Credentials" -message "Please enter username/password for Proxy authentication"
}

从PowerShell v3开始,您可以使用
调用WebRequest
或其别名
iwr

iwr 'http://mysite/mypage.aspx?action=dosomething'
如果需要与Python脚本相同的输出,请使用响应的
Content
属性

(Invoke-WebRequest 'http://mysite/mypage.aspx?action=dosomething').Content
正如@stej所写的,Python代码看起来像GET,但是如果确实需要POST,可以使用
方法
参数

iwr 'http://mysite/mypage.aspx?action=dosomething' -Method Post