PSTwitterAPI icon indicating copy to clipboard operation
PSTwitterAPI copied to clipboard

PSTwitterAPI - a PowerShell module for the Twitter API

Results 6 PSTwitterAPI issues
Sort by recently updated
recently updated
newest added

Hi, Now when you create an API Account on twitter, it is by default a Essential Account with only v2 API https://developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api#v2-access-level There is some plan to support/upgrade to v2...

enhancement
help wanted

Any idea why I am getting this error calling Send-TwitterDirectMessages_EventsNew? Code: ``` powershell $TwitterUser = Get-TwitterUsers_Lookup -screen_name 'chinhdo' $Event = Send-TwitterDirectMessages_EventsNew -recipient_id $TwitterUser.Id -text "Hello !!" ``` The Get-TwitterUsers_Lookup method...

``` $file = "D:\OneDrive\Desktop\images\New_folder\Abedour.jpg" $length = (get-item $file).Length Send-TwitterMedia_Upload -command INIT -total_bytes $length -media_type image/jpeg ``` this returns the media.id, but I cant see the syntax for **Send-TwitterStatuses_UpdateWithMedia** to actually...

bug
help wanted
good first issue

Send-TwitterBlocks_Create -screen_name $screenname Some other commands works fine so I know the oauth is working. I get this error BadRequest {"errors":[{"code":215,"message":"Bad Authentication data."}]} at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.GetResponse(WebRequest request) at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()

I'm trying to use `Send-TwitterAccount_UpdateProfileBanner` to update my account banner: ```powershell $Image = [Convert]::ToBase64String((Get-Content .\TwitterBanner.png -Encoding Byte)) Send-TwitterAccount_UpdateProfileBanner -banner $Image ``` Naturally, that Image string is HUGE, as I'm trying...

- Get-TwitterApplication_RateLimitStatus - Get-TwitterFollowers_IDs - Get-TwitterFriends_IDs - Get-TwitterLists_list - Get-TwitterLists_Subscriptions - Get-TwitterSearch_Tweets - Get-TwitterStatuses_HomeTimeline - Get-TwitterStatuses_Lookup - Get-TwitterStatuses_MentionsTimeline - Get-TwitterStatuses_Retweeters_IDs - Get-TwitterStatuses_RetweetsID - Get-TwitterStatuses_RetweetsOfMe - Get-TwitterStatuses_ShowID - Get-TwitterStatuses_UserTimeline - Get-TwitterUser_Lookup...

help wanted