我在我们的一个Microsoft Teams频道上配置了一个Incoming Webhook,但发现它最近停止了工作,而且我也无法再在连接器列表中找到Incoming Webhook:
我需要使用什么命令来运行我们的管理员,或者我需要应用哪些配置才能使其再次运行?
我想知道Office 365 REST API和Microsoft Graph之间的区别,因为我们可以找到这两者的类似功能.
https://msdn.microsoft.com/en-us/office/office365/howto/rest-api-overview
以下是上面链接的文字:
Office 365 API功能也可通过Microsoft Graph获得,Microsoft Graph是一种统一的API,包括来自其他Microsoft服务(如Outlook,OneDrive,OneNote,Planner和Office Graph)的API,可通过单个端点和单个访问令牌访问.
如果没有这样的差异,你打算弃用这些吗?
谢谢
api office365 office365api office365connectors microsoft-graph
我们正在尝试使用Teams,Flow和Assembla创建批准工作流程,并且遇到了一些麻烦.
我们已成功设置了一些部分但是我们无法从团队中的卡片发起POST操作.
在团队中,我们可以使用传入的webhook连接器成功创建一张卡片.

这是使用Flow中的POST操作的以下JSON主体创建的
{
"@@type": "MessageCard",
"@@context": "http://schema.org/extensions",
"summary": "This is the summary property",
"themeColor": "f46b42",
"sections": [
{
"startGroup": true,
"title": "**Pending Review**",
"activityTitle": "Ticket Title",
"activitySubtitle": "Requested by: ",
"facts": [
{ "name": "Date submitted:", "value": "06/27/2017, 2:44 PM" },
{ "name": "Details:",
"value": "This ticket is ready for review." }
]
},
{
"potentialAction": [
{
"@@type": "HttpPOST",
"name": "Approve",
"target": "ANOTHER-POST-URL-IS-HERE"
},
{
"@@type": "HttpPOST",
"name": "Deny",
"target": "ANOTHER-POST-URL-IS-HERE"
}
]
}
]
}
Run Code Online (Sandbox Code Playgroud)
我们有另一个Flow …
我正试图通过将演员传递给团队中的卡片中的HttpPOST动作来解决任务.因此,一旦用户点击了操作,我就可以使用输入来获取用户输入并以这种方式将其添加到POST操作中:
{
"@type": "ActionCard",
"name": "Comment",
"inputs": [
{
"@type": "TextInput",
"id": "comment",
"isMultiline": true,
"title": "Input's title property"
}
],
"actions": [
{
"@type": "HttpPOST",
"name": "Action's name prop.",
"target": "https://yammer.com/comment?postId=123",
"body": "comment={{comment.value}}"
}
]
}
Run Code Online (Sandbox Code Playgroud)
但我想添加一些用户信息(名称,电子邮件,等等).
附注:
1.连接器在包含演员名称的HttpPOST操作成功响应后将答复发布到卡上(因此看起来很有希望):
2.连接器传递access_token给HttpPOST API端点,该端点包含一些信息(sub,tid).但是没有任何范围,所以即使我发现userprofileSTS 的正确端点我也无法调用它

3.基于样本我能够使用ActionableMessageTokenValidator但结果没用:

- sub只显示相同(我在令牌中看到)
相关问题:https://github.com/OfficeDev/outlook-actionable-messages-csharp-token-validation/issues/9
websocket office365connectors microsoft-teams microsoft-flow
我一直在研究论坛,但找不到解决方案。如何在Ubuntu 18.04 LTS中将Office 365日历与Gnome日历集成。
我使用的不是Thunderbird,而是使用Evolution。我已经将Thunderbird与Office 365集成在一起。但是本机日历会更方便。
有人尝试过吗?有没有成功?
问候
盘店
在 Microsoft Flow 中,我尝试检索用户配置文件中的自定义字段。我正在使用“获取用户配置文件 (V2) ”操作,并且我想在查询字段中指定自定义字段。无论我如何构造查询,操作都会返回此错误:
{
"error": {
"code": "BadRequest",
"message": "Query option '$select' was specified more than once, but it must be specified at most once.",
"innerError": {
"request-id": "785b1a00-e298-494f-95ad-af979856cbf4",
"date": "2018-01-05T13:41:46"
}
}
}
Run Code Online (Sandbox Code Playgroud)
我应该使用什么语法来获取字段“TestField”?
我猜想查询字段中的值已添加到操作创建的 OData 查询中。
任何帮助是极大的赞赏!
亲切的问候, 彼得·伦德奎斯特
rest odata azure-logic-apps office365connectors power-automate
每当我尝试授权获得的连接时,我都试图将流程与Office 365 Outlook连接起来。
OAuth2Certificate authorization flow failed for service 'Office 365
(Discovery, Certificate)'. O365 discovery endpoint returned status code 401
(Unauthorized). Response:\r\n{"error":{"code":"-2147024891,
System.UnauthorizedAccessException","message":"Access denied. You do not have
permission to perform this action or access this resource."}}
Run Code Online (Sandbox Code Playgroud)
我是Office 365的所有者,这是一个家庭帐户,而不是企业帐户,我不确定这是否有所作为。
希望有人能帮忙
我正在尝试使用 office365ConnectorSend 将消息从 Jenkins 发送到 MS Teams,但颜色属性似乎根本不起作用。
我按照https://www.jenkins.io/doc/pipeline/steps/Office-365-Connector/在 Jenkins 管道文件中使用类似下面的内容
office365ConnectorSend(消息:“测试通知”,颜色:“ffc000”,webhookUrl:“webhook url”)
我能够将消息发送到我的团队频道,但无论我使用什么十六进制代码,消息卡颜色都不会改变。
尝试使用快速启动模板将电子邮件中的附件保存到 SharePoint 文件夹。
Attachments传入)
在新邮件上看似成功,但附件内容设置为 null ( "ContentBytes": null):
[
{
"Id": "AAMkADlhMDBiODNiLWFmOTEtNGZjOS1hMjYxLTY1OTU3MDk4YzZjNABGAAAAAACijX5OkcblRIVMFzOsYgiSBwBFaJ_hCA08Tb5SmdY6ZqCxAAAAADB8AABFaJ_hCA08Tb5SmdY6ZqCxAACD6w2UAAABEgAQAOCw7xb1bG9LstW5SRafEOE=",
"ContentType": "image/jpeg",
"Size": 16962,
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "image001.jpg",
"ContentBytes": null
},
{
"Id": "AAMkADlhMDBiODNiLWFmOTEtNGZjOS1hMjYxLTY1OTU3MDk4YzZjNABGAAAAAACijX5OkcblRIVMFzOsYgiSBwBFaJ_hCA08Tb5SmdY6ZqCxAAAAADB8AABFaJ_hCA08Tb5SmdY6ZqCxAACD6w2UAAABEgAQAG7KUOVpzCRJslBYmXAysB4=",
"ContentType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"Size": 194702,
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "Test.docx",
"ContentBytes": null
},
{
"Id": "AAMkADlhMDBiODNiLWFmOTEtNGZjOS1hMjYxLTY1OTU3MDk4YzZjNABGAAAAAACijX5OkcblRIVMFzOsYgiSBwBFaJ_hCA08Tb5SmdY6ZqCxAAAAADB8AABFaJ_hCA08Tb5SmdY6ZqCxAACD6w2UAAABEgAQAL3JExHdzLJDs0YH1XpZXgU=",
"ContentType": "image/jpeg",
"Size": 73353,
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "image005.jpg",
"ContentBytes": null
},
{
"Id": "AAMkADlhMDBiODNiLWFmOTEtNGZjOS1hMjYxLTY1OTU3MDk4YzZjNABGAAAAAACijX5OkcblRIVMFzOsYgiSBwBFaJ_hCA08Tb5SmdY6ZqCxAAAAADB8AABFaJ_hCA08Tb5SmdY6ZqCxAACD6w2UAAABEgAQABUsTq9cXiVCoowGEFnbtHw=",
"ContentType": "image/jpeg",
"Size": 3684,
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "image003.jpg",
"ContentBytes": null
}
] …Run Code Online (Sandbox Code Playgroud)