“FeedUri”的替代值可以是用于联系人输入
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用:
Try with:
试试这个:
上面的代码应该可以工作。
Try this:
the above code should work.