gpt4 book ai didi

c# - .NET MVC API - 获取请求中的点(句号)

转载 作者:行者123 更新时间:2023-11-30 13:26:47 27 4
gpt4 key购买 nike

我正在尝试设置 Facebook Notification API。我有一个带有 RealtimeUpdate() - Get 的 API Controller ,将仅用于验证端点。

如 Facebook 文档中所写:

Firstly, Facebook servers will make a single HTTP GET to your callback URL when you try to add or modify a subscription. A query string will be appended to your callback URL with the following parameters:

  • hub.mode - The string "subscribe" is passed in this parameter
  • hub.challenge - A random string
  • hub.verify_token - The verify_token value you specified when you created the subscription

从这里我遇到了一个问题——我不知道如何处理查询参数名称中的这些点。我谷歌了很多,但没有找到解决方案。

有人可以告诉我如何从这个中心获取数据*值吗?

谢谢!

最佳答案

使用 FromUri 属性更新您的方法签名,如下所示:

public string Get(
[FromUri(Name="hub.mode")]string mode,
[FromUri(Name="hub.challenge")]string challenge,
[FromUri(Name="hub.verify_token")]string verifyToken
)
{
/* method body */
}

参数将使用指定的名称从查询字符串中绑定(bind)。

关于c# - .NET MVC API - 获取请求中的点(句号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17844491/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com