0

我正在尝试使用 .Net API 修改 Gmail 帐户中的联系人,并将其加载到 powershell 中。我正在按照此处描述的步骤进行操作(更新联系人,Doh!)

要更新联系人,首先检索联系人条目,修改数据并向联系人的编辑 URL 发送授权的 PUT 请求,并在正文中包含修改后的联系人条目。

好的,知道了,所以我成功地使用此代码检索联系信息:

$Settings = New-Object Google.GData.Client.RequestSettings( "MyApp", $username , $password )
$Credentials = New-Object System.Net.NetworkCredential( $username, $password )

$Request = New-Object Google.Contacts.ContactsRequest( $Settings )
$Contacts = $Request.GetContacts()
$GoogleContact = $Contacts.Entries |? { $_.PrimaryEmail.Address -eq "john.doe@gmail.com" }
$GoogleContact.Title

当然,我收到来自 google 的邮件消息,表明外部应用程序被阻止,我更改了安全参数以允许此代码工作......它工作正常,代码提示我的 Google 联系人标题。

现在,我的问题是:
我正在更改对象的属性:

$GoogleContact.Title = "Mac Gyver"

我正在使用一个名为的函数Execute-HTTPPostCommand,稍作修改以添加谷歌要求的 Etag 值,以确保我没有修改在其他地方实际修改的条目:

function Execute-HTTPPostCommand() {
    param(
        [string] $TargetUrl = $null
        ,[string] $PostData = $null
        ,$Credentials
        ,$Etag
    )

    $ErrorActionPreference = "Stop"
    $global:webRequest = [System.Net.WebRequest]::Create($TargetUrl)
    $webRequest.Headers.Add("etag", $Etag )
    $webRequest.ContentType = "text/html"
    $PostStr = [System.Text.Encoding]::UTF8.GetBytes($PostData)
    $webrequest.ContentLength = $PostStr.Length
    $webRequest.ServicePoint.Expect100Continue = $false
    $webRequest.Credentials = $Credentials

    $webRequest.PreAuthenticate = $true
    $webRequest.Method = "PUT"

    $Global:requestStream = $webRequest.GetRequestStream()
    $requestStream.Write($PostStr, 0,$PostStr.length)
    $requestStream.Close()

    [System.Net.WebResponse] $global:resp = $webRequest.GetResponse();
    $rs = $resp.GetResponseStream();
    [System.IO.StreamReader] $sr = New-Object System.IO.StreamReader -argumentList $rs;
    [string] $results = $sr.ReadToEnd();

    return $results;
}

并这样称呼它:

Execute-HTTPPostCommand -TargetUrl $GoogleContact.Id -PostData $GoogleContact -Credentials $Credentials -Etag $GoogleContact.ETag

Contact.ID 值是 google 更新联系人所需的 URL,如下所示:https ://www.google.com/m8/feeds/contacts/userEmail/full/ {contactId}

我收到错误 401:未经授权。作为 Windows 系统管理员,我不熟悉 Web 服务 PUT 请求……我使用相同的凭据来读取数据并尝试更新数据。我错过了什么?

4

1 回答 1

0

好的,这很容易,我应该有 RTFM ......

#Loading Google API
$Settings = New-Object Google.GData.Client.RequestSettings( "MyApp", $username , $password )
$Credentials = New-Object System.Net.NetworkCredential( $username, $password )

#Loading Contacts, and getting the one I want
$Request = New-Object Google.Contacts.ContactsRequest( $Settings )
$Contacts = $Request.GetContacts()
$GoogleContact = $Contacts.Entries |? { $_.PrimaryEmail.Address -eq "john.doe@gmail.com" }

#Updating the fields
$GoogleContact.Name.FullName = "Mac Gyver"
$GoogleContact.Name.GivenName = "Mac"
$GoogleContact.Name.FamilyName = "Gyver"
$GoogleContact.Title = "Handyman Masterchief"

#Update
$MAJ = $ContactRequest.Update($GoogleContact)

它按原样工作,就像 .Net 示例一样。

无需加载繁重的 PUT 请求,API 完成他的工作。

对不起,伙计们耽误了时间!

于 2015-03-31T08:49:27.147 回答