How to create event where current user not organizer using Microsoft Graph API(如何使用 Microsoft Graph API 创建当前用户不是组织者的事件)
问题描述
需要创建一个当前用户不是组织者的活动.我尝试使用以下代码来创建事件:
Need to create an event where current user is not the organizer. I tried with the following code that I'm using to create the event:
var eventsEndPoint=New Uri("https://graph.microsoft.com/v1.0/users/johndoe@some.com/events");
var postBody="{'Subject':'Testing Organizer - 12','Location':{'DisplayName':'Some place'}," +
"'Start': {'DateTime': '2016-07-15T15:00:00.0000000', 'TimeZone':'UTC'}," +
"'End': {'DateTime': '2016-07-15T15:30:00.0000000', 'TimeZone':'UTC'},"+
"'Body':{'Content': 'This is a test of Grap API.', 'ContentType':'Text'},"+
"'IsOrganizer':'False','Organizer':{'EmailAddress': "+"{'Address':'organizer@some.com'} }}";
var createBody = new StringContent(postBody, system.Text.Encoding.UTF8, "application/json");
HttpResponseMessage response = await httpClient.PostAsync(eventsEndPoint, createBody);
事件已创建,但无论 IsOrganizer=false 且 Organizer 设置为与创建事件的用户不同的用户 (johndoe@some.com) 响应始终显示 IsOrganizer 设置为 true 且 Organizer 用户相同用户而不是应请求在 Organizer 属性中设置的那个.
Event gets created but no matter that IsOrganizer=false and Organizer is set to different user than the one the event is created for (johndoe@some.com) response always show that IsOrganizer gets set to true and Organizer user is the same user and not the one set at Organizer property at the request.
是否可以使用 Graph 设置不同的组织者?
Is it possible to set a different organizer using Graph?
推荐答案
听起来您正在尝试使用委托(又名代表发送").目前 Graph 不支持委托.您的活动将始终使用经过身份验证的帐户作为组织者来创建.
It sounds like you are attempting to use delegates (aka "send on behalf of"). At the moment delegation isn't supported by Graph. Your events will always be created with the authenticated account as the organizer.
这篇关于如何使用 Microsoft Graph API 创建当前用户不是组织者的事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Microsoft Graph API 创建当前用户不是组织者的事件
基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
