Skip to content

ConvertFrom-TwitterV1Date

SYNOPSIS

Convert a date retrieved from an API v1.1 endpoint to [DateTime].

SYNTAX

ConvertFrom-TwitterV1Date [-Date] <String> [<CommonParameters>]

DESCRIPTION

Convert a date retrieved from an API v1.1 endpoint to [DateTime].

Converts a UTC date in the format '%a %b %d %H:%M:%S +0000 %Y' to [DateTime] format.

EXAMPLES

Example 1

PS > 'Sat May 04 15:30:39 +0000 2019' | ConvertFrom-TwitterV1Date
Saturday, May 4, 2019 10:30:39 AM

Convert a Twitter V1 date from the pipeline.

PARAMETERS

-Date

A Twitter API v1.1 date string, in the format of '%a %b %d %H:%M:%S +0000 %Y'.

Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
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

System.Object

NOTES

Online Version

ConvertFrom-EpochTime