Public/Send-Tweet.ps1
function Send-Tweet { <# .SYNOPSIS This sends a tweet under a username. .EXAMPLE Send-Tweet -Message 'hello, world' This example will send a tweet with the text 'hello, world'. .PARAMETER Message The text of the tweet. #> [CmdletBinding()] [OutputType('System.Management.Automation.PSCustomObject')] param ( [Parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)] [ValidateLength(1, 140)] [string]$Message ) process { ####Added following line/function to properly escape !,*,(,) special characters $Message = $(Add-SpecialCharacters -Message $Message) $Body = "status=$Message" $apiParams = @{'status' = $Message } InvokeTwitterPostApiCall -HttpEndpoint 'https://api.twitter.com/1.1/statuses/update.json' -ApiParams $apiParams -Body $Body } } |