我正在使用Facebook Graph Api并尝试获取用户数据。我正在发送用户访问令牌,如果此令牌过期或无效Facebook返回状态码400并且此响应:
{
"error": {
"message": "Error validating access token: The session is invalid because the user logged out.",
"type": "OAuthException"
}
}
问题是当我使用这个C#代码时:
try {
webResponse = webRequest.GetResponse(); // in case of status code 400 .NET throws WebException here
} catch (WebException ex) {
}
如果状态代码为400,则在捕获到异常后,.NET会抛出WebException并且webResponse
为null
,因此我没有机会处理它。我想这样做是为了确保问题是在过期的令牌中,而不是在其他地方。
有办法吗?
感谢。
答案 0 :(得分:86)
使用像这样的try / catch块并正确处理错误消息应该可以正常工作:
var request = (HttpWebRequest)WebRequest.Create(address);
try {
using (var response = request.GetResponse() as HttpWebResponse) {
if (request.HaveResponse && response != null) {
using (var reader = new StreamReader(response.GetResponseStream())) {
string result = reader.ReadToEnd();
}
}
}
}
catch (WebException wex) {
if (wex.Response != null) {
using (var errorResponse = (HttpWebResponse)wex.Response) {
using (var reader = new StreamReader(errorResponse.GetResponseStream())) {
string error = reader.ReadToEnd();
//TODO: use JSON.net to parse this string and look at the error message
}
}
}
}
}
然而,使用Facebook C# SDK使这一切变得非常简单,因此您无需亲自处理。
答案 1 :(得分:14)
WebException
仍然在Response
属性中有“真实”响应(假设有响应),因此您可以从catch
块中获取数据。