1
管理在遵循示例將數據推入功能BI的儀表板時創建數據集,但現在面臨服務器訪問問題。在運行時,我得到以下異常:遠程服務器返回錯誤:(404)未找到。 有沒有人遇到相同的問題或可以幫助解決它?遠程服務器返回錯誤:(404)未找到。 Power BI
private static void AddRows(string datasetId, string tableName)
{
string powerBIApiAddRowsUrl = String.Format("https://api.powerbi.com/v1.0/myorg/datasets/{0}/tables/{1}/rows", datasetId, tableName);
//the above Url is the one provided for contacting the Server
using (Stream writer = request.GetRequestStream())
{
writer.Write(byteArray, 0, byteArray.Length);
var response = (HttpWebResponse)request.GetResponse();
Console.WriteLine("Rows Added");
Console.ReadLine();
}
}
}