使用WCF服务c#上传照片到facebook页面

本文关键字:照片 facebook 页面 WCF 服务 使用 | 更新日期: 2023-09-27 18:04:45

我正在使用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);

使用WCF服务c#上传照片到facebook页面

这是一个非常通用的异常,你不能确切地说哪里出了问题。

使用这个异常,你会得到更多的信息。

catch (WebException e)
{
   //Read exception here
}