gpt4 book ai didi

powershell - 使用Powershell v2.0通过Google API删除Gmail电子邮件

转载 作者:行者123 更新时间:2023-12-02 23:41:28 29 4
gpt4 key购买 nike

$user = "example@gmail.com"
$pass= "examplepassword"
$secpasswd = ConvertTo-SecureString $user -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential ($pass, $secpasswd)

Invoke-RestMethod 'https://www.googleapis.com/gmail/v1/users/me/messages/0' -Method Delete -Credentials $cred

所以,我的问题是双重的。

我最初尝试使用 Invoke-WebRequest通过带有http删除请求的Google API删除Gmail电子邮件。但是,这不起作用,因为 Powershell 2.0 does not support Invoke-WebRequest

此后,我尝试在对IMAP和POP3进行试验之后尝试使用 Invoke-RestMethod,这两个都需要外部依赖项(向正在使用的计算机中添加.dll并不是最佳选择)。

因此,如果有人可以向我展示通过Powershell中的Google API删除电子邮件的适当方法,我将不胜感激。我已经在上面提供了一些有关我正在使用的示例代码。请原谅其中可能包含的任何错误,因为我是Powershell的新手,在使用RESTful服务方面,我的经验仍然有限。

最佳答案

除非这是gsuit /域admin / GMail帐户,否则GMail API将需要Oauth2身份验证,在这种情况下,您可以使用服务帐户进行身份验证。无论哪种情况,您都不能使用登录名和密码。

如果您考虑通过邮件服务器IMAP and SMTP直接使用而不是使用API​​,那么我对powershell的了解非常有限。不知道Powershell是否可行

更新:

我能够使用Invoke-WebRequest做到这一点,您仍然需要首先获取访问 token 。

Invoke-WebRequest -Uri "https://www.googleapis.com/gmail/v1/users/me/messages/0?access_token=$accesstoken"-Method Get | ConvertFrom-Json

接缝也起作用
Invoke-RestMethod -Uri "https://www.googleapis.com/gmail/v1/users/me/messages/0?access_token=$accesstoken"-Method Get 

如果您有兴趣,请在GitHub上放置OAuth的代码: Google Oauth Powershell

关于powershell - 使用Powershell v2.0通过Google API删除Gmail电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41236955/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com