为 box.net 实施 WebHook
Implementing WebHook for box.net
我正在将我的网站整合到 box.net。任何人都可以告诉我应该如何在 C# MVC 中编写 webhook 应用程序中的参数应该是什么?
我从 box weebhook 获取的样本数据应该是什么数据?
public class BoxController : Controller
{
public async Task<ActionResult> BoxWebhook(??????)
{
}
}
第一步是 setting up the webhook in the Box Admin panel。您可以指定哪些事件会触发 webhook,以及在 webhook 中发送哪些数据。
然后您必须配置您的服务器以侦听来自 Box 的传入 webhook 并解析它们。 This article describes how to receive .NET 环境中的 webhook。
我正在将我的网站整合到 box.net。任何人都可以告诉我应该如何在 C# MVC 中编写 webhook 应用程序中的参数应该是什么? 我从 box weebhook 获取的样本数据应该是什么数据?
public class BoxController : Controller
{
public async Task<ActionResult> BoxWebhook(??????)
{
}
}
第一步是 setting up the webhook in the Box Admin panel。您可以指定哪些事件会触发 webhook,以及在 webhook 中发送哪些数据。
然后您必须配置您的服务器以侦听来自 Box 的传入 webhook 并解析它们。 This article describes how to receive .NET 环境中的 webhook。