私は Smartsheet と c# を使用したプログラミングにまったく慣れていません。ほとんどが初心者で、Visual Studio 2013 を使用して Web アプリケーションと Smartsheet を統合しようとしています。現在、グリッドビュー コントロールに Smartsheet から返されたデータ (json 形式) を入力するのに苦労しています。これまでのところ、次を含むjson文字列を取得できました。
{
"id":4705121406871428,
"name":"Distributors",
"version":3,
"totalRowCount":2,
"accessLevel":"OWNER",
"effectiveAttachmentOptions":[
"DROPBOX",
"GOOGLE_DRIVE",
"BOX_COM",
"FILE"
],
"ganttEnabled":false,
"dependenciesEnabled":false,
"permalink":"https://app.smartsheet.com/b/home?lx=xlJ7OtqknyOndgOnClj4qg",
"createdAt":"2015-06-22T16:55:02+10:00",
"modifiedAt":"2015-06-23T14:17:47+10:00",
"columns":[
{
"id":3238895438587780,
"index":0,
"title":"id",
"type":"TEXT_NUMBER",
"primary":true,
"width":150
},
{
"id":7742495065958276,
"index":1,
"title":"distName",
"type":"TEXT_NUMBER",
"width":150
},
{
"id":2112995531745156,
"index":2,
"title":"agency",
"type":"TEXT_NUMBER",
"width":150
},
{
"id":6616595159115652,
"index":3,
"title":"profile",
"type":"TEXT_NUMBER",
"width":150
}
],
"rows":[
{
"id":3999757174630276,
"rowNumber":1,
"expanded":true,
"createdAt":"2015-06-23T11:05:26+10:00",
"modifiedAt":"2015-06-23T14:17:47+10:00",
"cells":[
{
"columnId":3238895438587780,
"type":"TEXT_NUMBER",
"value":1.0,
"displayValue":"1"
},
{
"columnId":7742495065958276,
"type":"TEXT_NUMBER",
"value":"ABS",
"displayValue":"ABS"
},
{
"columnId":2112995531745156,
"type":"TEXT_NUMBER",
"value":"ShedsRus",
"displayValue":"ShedsRus"
},
{
"columnId":6616595159115652,
"type":"TEXT_NUMBER",
"value":"OK",
"displayValue":"OK"
}
]
},
{
"id":8503356802000772,
"rowNumber":2,
"siblingId":3999757174630276,
"expanded":true,
"createdAt":"2015-06-23T11:05:26+10:00",
"modifiedAt":"2015-06-23T14:17:47+10:00",
"cells":[
{
"columnId":3238895438587780,
"type":"TEXT_NUMBER",
"value":2.0,
"displayValue":"2"
},
{
"columnId":7742495065958276,
"type":"TEXT_NUMBER",
"value":"Barns",
"displayValue":"Barns"
},
{
"columnId":2112995531745156,
"type":"TEXT_NUMBER",
"value":"BarnsRus",
"displayValue":"BarnsRus"
},
{
"columnId":6616595159115652,
"type":"TEXT_NUMBER",
"value":"OK",
"displayValue":"OK"
}
]
}
]
}
この文字列には、ID や型などの情報が多すぎるようです。必要なのは、列名とそれに関連するデータだけです。次に、この情報を gridview コントロールとして表示します。
これは私のjsonリクエストです:
string sURL;
sURL = "https://api.smartsheet.com/1.1/sheet/4705121406871428";
WebRequest wrGETURL;
wrGETURL = WebRequest.Create(sURL);
wrGETURL.ContentType = "application/json";
wrGETURL.Method = "GET";
wrGETURL.Headers["Authorization"] = "Bearer ******************";
Stream objStream;
objStream = wrGETURL.GetResponse().GetResponseStream();
StreamReader objReader = new StreamReader(objStream);
string jsonResult = objReader.ReadToEnd();
誰かが私のためにこれを機能させるためのガイダンスを提供できれば、それは大歓迎です...このトピックに関する私の完全な無知を許してください...ここで完全な初心者!ありがとう。