API-интерфейс graph facebook возвращает эту ошибку, если вы не предоставили действительный токен:
{
"error": {
"type": "OAuthException",
"message": "An access token is required to request this resource."
}
}
В случае, если вы делаете правильный вызов, возвращается результат json.
В WCF с.net 4, как я могу вернуть то же самое «исключение» 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);
}