我正在尝试使用GData .Net Api创建新联系人。 我使用较新的Google.Apis获得了AccessToken。
此访问令牌可以正常获取,更新和删除联系人,但如果我尝试创建一个,我会收到401 Unauthorized响应。
这是我用来添加联系人的代码:
if (string.IsNullOrEmpty(FullName))
{
FullName = string.Format("{0} {1}", FirstName, LastName);
if (string.IsNullOrEmpty(FullName))
{
ThrowTerminatingError(new ErrorRecord(
new ArgumentException("Please provide a name for the contact"),
null, ErrorCategory.InvalidArgument, null));
}
}
Contact = new Contact
{
Name = new Name
{
GivenName = FirstName,
FamilyName = LastName,
FullName = FullName
},
Content = "Notes",
};
foreach (var m in Emails)
{
Contact.Emails.Add(new EMail(m));
}
RequestSettings settings = new RequestSettings(applicationName, AuthentParameters);
ContactsRequest cr = new ContactsRequest(settings);
var feedUri = new Uri(string.Format("{0}{1}/full/", Scope, Domain));
cr.Insert(feedUri, Contact));
使用POST方法将以下原子提要发送到http://www.google.com/m8/feeds/contacts/(my域)/ full /:
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005">
<gd:name>
<gd:givenName>Guillaume</gd:givenName>
<gd:familyName>Davion</gd:familyName>
<gd:fullName>Guillaume Davion</gd:fullName>
</gd:name>
<gd:email address="gudavion@test.info" />
<category term="http://schemas.google.com/contact/2008#contact" scheme="http://schemas.google.com/g/2005#kind" />
<content type="text">Notes</content>
</entry>
标题是:
感谢任何可以帮助我的人。
答案 0 :(得分:0)
我设法让它适用于两件事: 首先,改变我构建feed uri的方式:
var feedUri = new Uri(ContactsQuery.CreateContactsUri(Domain));
第二次在电子邮件中添加标签:
Contact.Emails.Add(new EMail(m) { Label = "Default" });
有了这个,添加进展顺利。