问题标签 [asp.net-webhooks]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
665 浏览

c# - Webhook 项目外的 Asp.Net Webhook 订阅

我已经创建了一个 webhook 自定义发件人项目,如此所述。当我尝试使用邮递员订阅 webhook 时,出现登录错误。根据我对订阅的理解,我必须提供一个仪表板之类的东西,用户来订阅事件。我希望用户直接从自己的应用程序调用订阅 API。我该怎么做?我没有看到任何文档告诉我订阅请求中的所有参数。需要帮忙。

0 投票
1 回答
3368 浏览

microsoft-teams - Fail to try webhook for Microsoft Teams site

anybody know if I do something wrong or if something is not working at the moment?

  • I use MessageCard Playground and want to send data to a Teams-Channel.
  • I did setup the connector and got a webhook url. enter image description here
  • Now I want to send some samples to the channel (valid json)

Getting this error: enter image description here

Any idea what I do wrong?

Update

Sample JSON

0 投票
1 回答
291 浏览

javascript - 如何使用 javascript(node.js) 从 Microsoft 的动态 CRM 接收 webhook?

我正在尝试使用 node.js 开发集成,以从 Microsoft 的 Dynamics CRM 接收 webhook。

我为asp.net找到了很多代码片段、博客等。但是我找不到使用显然使用 node.js 的 javascript 来实现它的方法。

谁能帮我弄清楚?

0 投票
2 回答
510 浏览

c# - TFS 2015 Web 挂钩到 Slack 集成

我有一个要求,

当在 TFS 2015(而不是 vsts)中创建工作项(并且状态 - 说正在进行中)时,我希望我的网络挂钩触发一个 post 方法,该方法将在 Slack 中创建一个频道,并邀请少数人。

2) 一旦 Bug 关闭 - 读取频道的所有历史并将历史推送回 Bug。

我能够使用 TFS 服务器端插件实现相同的功能,并且它正在工作,但需求已更改为 Web 挂钩。

有人可以帮我解决如何实现自定义 web hook.which 将启用从 TFS WI 到 Slack 的事件吗?

谢谢,

0 投票
2 回答
262 浏览

visual-studio-2017 - 流分析作业的 Azure 函数绑定类型?

Azure 函数的现成 Visual Studio 2017 (15.5.5) 模板创建一个 HttpTrigger Run 方法,其中 HttpRequest 和 TraceLog 作为参数。

我想使用其他绑定类型,例如 POCO、'string' 或 'ILogger'。

我已经搜索了很多,但似乎找不到 HttpTrigger (http web hook)的绑定类型的简明列表。我发现的一些文章包括:

可用于 Azure Stream Job Functions 的所有可能绑定类型有哪些?

我可以开始试错,但我想我会先检查一下。

谢谢

-约翰

0 投票
0 回答
1066 浏览

c# - 如何在 c# 中使用 dialogflow.ai 中的 webhook 发送广播消息

我正在使用 Visual Studio 在 c# 中使用 dialogflow ( api.ai ) 和 webhook 创建一个机器人。

我必须为所有请求订阅的用户创建广播消息选项。

当用户调用意图订阅时,我调用操作:subscribe.about 我保存 psid 的位置。

下面的代码:

我必须创建一个模块,以便在活动上线时向所有这些用户发送广播消息。

我在表中存储了以下数据:ID、事件名称、事件日期

时间: 事件日期 = 现在=> 我必须向所有订阅的用户发送消息。

我开始使用主动消息,但似乎它们是使用 botframework 创建的。我只想使用 webhook 。

我创建了一个控制器来在 facebook 中发送消息,但似乎不行当我调用这个控制器时,我收到了这条消息:

请问我该如何创建这个模块。我需要一些建议。使用邮递员我已经测试使用 Facebook 的 API 调用通过机器人发送消息。我是 C# 新手,所以请帮助我:(

0 投票
0 回答
93 浏览

asp.net-mvc - Trello Webhooks 请求无法验证

我使用 AspNetWebHooks TrelloReceiver (.net 4.5) 创建了一个 mvc 项目并将其部署在 appharbor 上。在 web.config 我写了以下内容: <add key="MS_WebHookReceiverSecret_Trello" value="My Secret"/> 当请求到来时,在日志中我看到以下内容:

“x-trello-webhook”标头字段提供的 WebHook 签名与“TrelloWebHookReceiver”接收者预期的值不匹配。WebHook 请求无效。

作为一个秘密,我正在使用我的 Trello Oauth 令牌。可能是什么问题呢?

0 投票
1 回答
498 浏览

azure - Azure WebJob Console Application Empty Args when calling from webhook

I'm working on Azure WebJob. I started by creating a console application in Visual Studio and I published the application as a webJob in portal.azure from VisualStudio.

the WebJob is Triggered Manualy from its Webhook with username and password https://{MyWebAPP}.scm.azurewebsites.net/api/triggeredwebjobs/{MyWebJob}/run?arguments=1 2 3 from a second program.

this WebJob is verry simple. It only displays a the arguments 1,2 and 3.

when I run the program from CommandeLine like so dotnet MyProject.dll 1 2 3 it works well. but when I run it from webHook it does not read arguments.

here is my main script :

This is the log in the WebJob when I run from WebHook by Post request : [06/09/2018 15:19:37 > 33a9f2: INFO] PARAMS Passed :

and this is the console when I run it from commande Line : [06/09/2018 15:19:37 > 33a9f2: INFO] PARAMS Passed : 1,2,3

Can some One Help PLEASE. Tha,ks From All.

0 投票
1 回答
280 浏览

asp.net - Microsoft ASP.NET WebHooks 自定义接收器获得多次尝试

我通过实现 WebHookHandler 为 Microsoft ASP.NET WebHooks 实现了一个自定义接收器。

每当某个事件被触发时,它都会击中我上面的接收器 3 次。我已经尝试了一切,但没有任何区别。请帮我整理一下。

0 投票
0 回答
362 浏览

c# - 创造; 异常:[任务被取消。]内部错误

Microsoft Graph WebHooks 直到昨天都运行良好,但我今天在创建订阅时遇到了问题

代码:扩展错误消息:操作:创建;异常:[任务被取消。]内部错误

以下是代码

以下是堆栈跟踪

以下是图片

https://i.stack.imgur.com/RDESj.png

https://i.stack.imgur.com/AviYX.png