我有一个关于 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。我究竟做错了什么?我必须做些什么才能让它工作?