c# – 如何使用smartsheet api sdk发送文件附件

我想将文件附件从fileupload发送到智能表.我正在使用sdk,我找到了附件的示例代码.

这是我的附件代码:

if (fileUpload.HasFile)
    {
        string fileName = fileUpload.PostedFile.FileName;
        string sourceFile = Server.MapPath("~/")+fileName;
        fileUpload.PostedFile.SaveAs(sourceFile);
        string type = fileUpload.PostedFile.ContentType;
        smartsheet.Sheets().Attachments().AttachFile(sheetId, sourceFile, type);

    }

我读过AttachFile()方法,必须使用ObjectId,但我不明白如何获取ObjectId,所以我使用了sheetId.

编辑:
该代码是正确的,当我运行我的代码时,我在工作表上找到了标签附件中的文件附件,但我想将该文件附加到我添加的新行中.

你能帮帮我解决这个问题吗?
我还是新手使用smartsheet,还是学习如何使用smartsheet api sdk c#,但我没有找到很多示例或示例代码来使用smartsheet api.

这是我的完整代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Smartsheet.Api;
using Smartsheet.Api.Models;
using Smartsheet.Api.OAuth;

namespace smartsheet
{
    public partial class TestInput : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            try
            {
                string strToken = "649qjpt7pmq8i0xze5550hr12x";
                long sheetId = 4204618734430084;

                Token token = new Token();
                token.AccessToken = strToken;

                SmartsheetClient smartsheet = new SmartsheetBuilder().SetAccessToken(token.AccessToken).Build();
                Smartsheet.Api.Models.Home home = smartsheet.Home().GetHome(new ObjectInclusion[] { ObjectInclusion.TEMPLATES });
                List<Column> cols = new List<Column>(smartsheet.Sheets().Columns().ListColumns(sheetId));

                Cell cell1 = new Cell();
                cell1.ColumnId = cols[0].ID;
                cell1.Value = txFirstname.Text;
                Cell cell2 = new Cell();
                cell2.ColumnId = cols[1].ID;
                cell2.Value = txLastname.Text;

                List<Cell> cells = new List<Cell>();
                cells.Add(cell1);
                cells.Add(cell2);

                Row row = new Row();
                row.Cells=cells;

                List<Row> rows = new List<Row>();
                rows.Add(row);

                RowWrapper rowWrapper = new RowWrapper.InsertRowsBuilder().SetRows(rows).SetToBottom(true).Build();

                smartsheet.Sheets().Rows().InsertRows(sheetId, rowWrapper);

                if (fileUpload.HasFile)
                {
                    string fileName = fileUpload.PostedFile.FileName;
                    string sourceFile = Server.MapPath("~/")+fileName;
                    fileUpload.PostedFile.SaveAs(sourceFile);
                    string type = fileUpload.PostedFile.ContentType;
                    smartsheet.Sheets().Attachments().AttachFile(sheetId, sourceFile, type);

                }

            }
            catch (Exception ex)
            {
                LableMsg.Text = ex.Message.ToString();
            }
        }
    }
}

最佳答案 我不是C#开发人员,但我非常熟悉Smartsheet的Java SDK,后者对C#SDK进行了建模,因此下面的答案可能会有一些轻微的语法问题,但它应该给你一些东西.

您几乎就在那里 – 要将文件附加到新行,您只需要获取刚创建的新行的ID,然后附加到它而不是表单.改变你的行:

smartsheet.Sheets().Rows().InsertRows(sheetId, rowWrapper);

IList<Row> insertedRow = smartsheet.Sheets().Rows().InsertRows(sheetId, rowWrapper);
long newRowId = insertedRow.get(0).ID;

现在您可以直接附加到该行:

smartsheet.Rows().Attachments().AttachFile(newRowId, sourceFile, type);
点赞