0
を使用して行の添付ファイルをダウンロードして、私はリンクはスマートシートAPIのC#
の下に参照し、以下の行を使用しています - 添付ファイルをダウンロードするには
public void downloadAttachment(Attachment attach)
{
SmartsheetRequest getAttachment = new SmartsheetRequest { callURL = "/attachment/" + attach.Id, method = "GET", contentType = "application/json" };
var jsonGetAttachment = getAttachment.MakeRequest("null");
getAttachment.DownloadAttachment(jsonGetAttachment["url"], jsonGetAttachment["sizeInKb"], jsonGetAttachment["name"]);
}
を。 "MakeRequest" 方式で
しかし、次の行
Stream responseStream = request.GetResponse().GetResponseStream();
"リモートサーバーがエラーを返しました。:(404)が見つかりませんでした" を与えますエラー。