“FeedUri”的替代值可以是用于联系人输入

发布于 2024-08-29 15:36:06 字数 848 浏览 4 评论 0原文

我正在尝试在 Google Apps 上创建联系人。 我正在使用管理员凭据在同一域中的其他用户中创建联系人。

我面临的问题是当我使用时:

Uri feedUri  = new Uri(ContactsQuery.CreateContactsUri("default"));
ContactEntry createdEntry = (ContactEntry)service.Insert(feedUri, ContactEntry[0]);

它正在管理员帐户中添加联系人,但我想将联系人添加到其他用户的帐户中。

我怎样才能做到这一点?

我尝试使用:

Uri feedUri = new Uri(ContactsQuery.CreateContactsUri("[电子邮件受保护]"));

但给出了异常:“请求执行失败”。

我正在使用适用于 .NET 的 Google Apps API 版本 2。

将服务创建为:

ContactsService obj_ContactService = new ContactsService("");
obj_ContactService.setUserCredentials(userEmail, password); // Admin's Email and Password 

I am trying to create a contact on Google Apps.
I am using Admin credential to create contact in other users in same domain.

Problem i am facing is when i use:

Uri feedUri  = new Uri(ContactsQuery.CreateContactsUri("default"));
ContactEntry createdEntry = (ContactEntry)service.Insert(feedUri, ContactEntry[0]);

It is adding contact in Admin account but i a want to put contact in other user's account.

How can i do that?

I tried with :

Uri feedUri = new Uri(ContactsQuery.CreateContactsUri("[email protected]"));

But is giving exception: "Execution of request failed".

I am using Google Apps API version 2 for .NET.

Creating service as :

ContactsService obj_ContactService = new ContactsService("");
obj_ContactService.setUserCredentials(userEmail, password); // Admin's Email and Password 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

全部不再 2024-09-05 15:36:06

尝试使用:

Uri feedUri = new Uri(http://www.google.com/m8/feeds/contacts/youruser%40gmail.com/full");
ContactEntry createdEntry = (ContactEntry)service.Insert(feedUri , ContactEntry[0]);

Try with:

Uri feedUri = new Uri(http://www.google.com/m8/feeds/contacts/youruser%40gmail.com/full");
ContactEntry createdEntry = (ContactEntry)service.Insert(feedUri , ContactEntry[0]);
星星的軌跡 2024-09-05 15:36:06

试试这个:

RequestSettings settings = new RequestSettings("yourAppName", appDomainName, DomainConsumerSecret, userId, appDomainName);   //the userId is the pure id without "@yourdomain.com" 
ContactsRequest  contactsRequest = new ContactsRequest(settings);
Uri feedUri = new Uri(ContactsQuery.CreateContactsUri("default"));
Contact createdEntry = contactsRequest.Insert<Contact>(feedUri, contact);  

上面的代码应该可以工作。

Try this:

RequestSettings settings = new RequestSettings("yourAppName", appDomainName, DomainConsumerSecret, userId, appDomainName);   //the userId is the pure id without "@yourdomain.com" 
ContactsRequest  contactsRequest = new ContactsRequest(settings);
Uri feedUri = new Uri(ContactsQuery.CreateContactsUri("default"));
Contact createdEntry = contactsRequest.Insert<Contact>(feedUri, contact);  

the above code should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文