我有一个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/
Web服务验证在Excel中是不可能的。 http://cwebbbi.wordpress.com/2012/07/31/using-the-webservice-function-in-excel-2013/的参考