返回Json异常
如果您不提供有效的令牌,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我找到了一种方法。返回流并管理返回的内容类型。 基于此答案
I think I find one way. Returning a stream and managing the returning content type. based on this answer