返回Json异常

发布于 2024-10-11 13:07:48 字数 541 浏览 3 评论 0原文

如果您不提供有效的令牌,Graph facebook API 将返回此错误:

{
"error": {
             "type": "OAuthException",
             "message": "An access token is required to request this resource."
         }
}

如果您进行有效的调用,则会返回 json 结果。

在带有.net 4的WCF中,如何使用此方法返回相同的Json“异常”:

[WebGet(UriTemplate = "{id}")]
public SampleItem Get(string id)
{
   if (id.Length != 4)
      "how to return here the error since this method return a sample item class"????
   else
      return rep.GetSampleByID(id);
}

The graph facebook API return this error if you dont provide a valid token:

{
"error": {
             "type": "OAuthException",
             "message": "An access token is required to request this resource."
         }
}

In case you make a valid call the json result is returned.

In WCF with .net 4 how can I return the same Json "exception" with this method:

[WebGet(UriTemplate = "{id}")]
public SampleItem Get(string id)
{
   if (id.Length != 4)
      "how to return here the error since this method return a sample item class"????
   else
      return rep.GetSampleByID(id);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诠释孤独 2024-10-18 13:07:48

我想我找到了一种方法。返回流并管理返回的内容类型。 基于此答案

I think I find one way. Returning a stream and managing the returning content type. based on this answer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文