Skip to content

Publish-Tweet

SYNOPSIS

Publishes a Tweet for the authenticating user.

SYNTAX

Tweet (Default)

Publish-Tweet [-TweetText] <String> [[-ReplyToTweet] <String>] [[-MediaId] <String[]>] [<CommonParameters>]

TweetWithMedia

Publish-Tweet [-TweetText] <String> [[-ReplyToTweet] <String>] -Path <String> -Category <String> [-AltImageText <String>] [<CommonParameters>]

DESCRIPTION

Publishes a Tweet for the authenticating user.

Duplicate Tweetsa re not allowed, that is to say, a user cannot post the same Tweet twice in a row.

EXAMPLES

Example 1

PS > Publish-Tweet -TweetText 'Getting an example for documentation for the Publish-Tweet command of the #BluebirdPS #PowerShell 7 module for Twitter.'

Publishes the provided text for the authenticating user.

Example 2

PS > Publish-Tweet -TweetText 'The Publish-Tweet command of the #BluebirdPS #PowerShell 7 module for Twitter can also reply to a Tweet unless I have a silly typo in the definition. ¯\_(ツ)_/¯' -ReplyToTweet 1330354141055643648 -MediaId 1330355920799412226

created_at                : Sun Nov 22 03:47:42 +0000 2020
id                        : 1330357261626208258
id_str                    : 1330357261626208258
text                      : The Publish-Tweet command of the #BluebirdPS #PowerShell 7 module for Twitter can also reply to a Tweet unless I ha… https://t.co/Kz6qAA0fNb
truncated                 : True
entities                  : @{hashtags=System.Object[]; symbols=System.Object[]; user_mentions=System.Object[]; urls=System.Object[]}
source                    : <a href="https://powershell.anovelidea.org" rel="nofollow">thedavecarrroll-tweets-with-pwsh</a>
in_reply_to_status_id     : 1330354141055643648
in_reply_to_status_id_str : 1330354141055643648
in_reply_to_user_id       : 292670084
in_reply_to_user_id_str   : 292670084
in_reply_to_screen_name   : thedavecarroll
<TRUNCATED OUTPUT>

Publishes the provided text as a reply with the specified media for the authenticating user.

PARAMETERS

-TweetText

The text of the Tweet.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-MediaId

The MediaId returned from the Send-TwitterMedia command.

Type: String[]
Parameter Sets: Tweet
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ReplyToTweet

The id of an existing Tweet to which the authenticating user wants to reply.

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Path

Specify the full path to the media file.

Type: String
Parameter Sets: TweetWithMedia
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Category

Specifies the type and use for the uploaded media.

Type: String
Parameter Sets: TweetWithMedia
Aliases:
Accepted values: TweetImage, TweetVideo, TweetGif

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-AltImageText

Provide additional information about the images or GIFs.

Type: String
Parameter Sets: TweetWithMedia
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

System.String

OUTPUTS

BluebirdPS.APIV2.TweetInfo.Tweet

NOTES

Online Version

Get-Tweet

API Documentation - POST statuses/update