我有一个 mvc 4 web API 的例子,我想在 Excel 2010 中使用它。最简单的方法是什么?如果解决方案需要复杂,我正在考虑将用户名和密码作为字符串参数传递。
[Authorize]
public class AccountBalanceApiController : ApiController
{
//http://localhost/FTAccounting/api/AccountBalanceApi?companyId=16&fiscalYear=2012
public Dictionary<int, TrialBalanceAccountSummaryModel> Get(int companyId, int fiscalYear)
{
return AccountBalance.GetTrialBalance(companyId, fiscalYear);
}
}
更新:在 Excel 中无法进行 Web 服务身份验证。参考来自 http://cwebbbi.wordpress.com/2012/07/31/using-the-webservice-function-in-excel-2013/