我使用c#中的wcf服务将照片上传到Facebook页面,遇到的异常是
{"The remote server returned an error: (500) Internal Server Error."}
at System.Net.WebClient.UploadFile(Uri address, String method, String fileName)
at System.Net.WebClient.UploadFile(String address, String method, String fileName)
WebClient client = new WebClient();
client.UploadFile("https://graph.facebook.com/" + albumID + "/photos?access_token=" + accessToken + "&message=" + name, "POST", path);
var message = Encoding.ASCII.GetString(response);
答案 0 :(得分:0)
这是一个非常通用的例外,你无法确切地说出出了什么问题。
使用此例外,您将获得更多信息。
catch (WebException e)
{
//Read exception here
}