0

我有一个关于 Intuit API 的问题。我想第一次使用这个 API 连接。我正在使用 .NET SDK。我将通过本教程:http: //goo.gl/PzIzoa。我不知道我必须在参数 issuerId 和主题中传递什么(步骤 1.b)。我第一次尝试时将它们留空,我正在捕获 InvalidTokenException。我必须通过什么论据才能使其发挥作用?

编辑:感谢您的帮助,现在我正在通过您的网络应用程序进行连接。现在我想使用我的应用程序进行连接。我写了这段代码:

string certificateFile = "C:\\OpenSSL-Win32\\bin\\testapp1.crt";
string password = "xxx";
X509Certificate2 certificate = new X509Certificate2(certificateFile, password);
string consumerKey = "xxx";
string consumerSecret = "xxx";
string issuerId = "";
string subject = "";
SamlRequestValidator val = new SamlRequestValidator(certificate, consumerKey, consumerSecret, issuerId, subject);

调用 SamlRequestValidator 构造函数后,我捕获了 InvalidTokenException。我究竟做错了什么?我必须做些什么才能让它工作?

4

1 回答 1

1

请查看以下链接。

https://developer.intuit.com/docs/0020_customeraccountdata/007_firstrequest

您可以使用 apiexplorer 工具来测试这些 API 调用,而无需使用 devkit。(它将确保您的 OAuth 密钥工作正常)

https://developer.intuit.com/apiexplorer?apiname=CustomerAccountData

您也可以参考以下 .Net 示例应用程序。

https://developer.intuit.com/docs/0020_customeraccountdata/devkits/285.net_sample_app_for_cad_services

如果您遇到与此过程相关的任何问题,请告诉我。

谢谢

于 2013-07-22T14:54:00.950 回答