2

After following the instructions on the IPP customer account data site regarding categorization and setting up an app to intake transactions from a users bank account I am receiving common => nil for each transaction. Is this a production only feature or should the test app receive categorizations on transactions?

4

1 回答 1

2

Intuit 设置了一个虚拟 FI(称为 CC_Bank,institutionId - 100000)用于测试 CAD API。我猜,您正在针对 CC_Bank 测试这些调用。

参考 - https://developer.intuit.com/docs/0020_customeraccountdata/customer_account_data_api/testing_calls_to_the_api

在 getAccountTransaction 调用中,CC_Bank 返回交易的静态列表(带有分类)。

您可以参考以下步骤来获取新令牌并使用 ApiExplorer 测试 API 调用。

ApiExplorer 链接 - https://developer.intuit.com/apiexplorer?apiname=CustomerAccountData

使用 openssl 生成密钥 - https://developer.intuit.com/docs/0020_customeraccountdata/007_firstrequest

生成这些密钥后,您可以使用公钥创建示例应用程序。https://developer.intuit.com/docs/0020_customeraccountdata/009_using_customeraccountdata/0010_gettingstarted/0015_create_an_cad_integration

然后在 apiexplorer 链接中使用带有 pwd 的 .p12 文件进行 SAML 断言 - https://developer.intuit.com/apiexplorer

您可以参考/使用 java/.net 示例应用程序来了解应用程序流程。

参考链接 - https://developer.intuit.com/docs/0020_customeraccountdata/devkits

更新

它不仅仅是一个 prod 功能。对于真正的金融机构,您应该获得分类数据。

谢谢

于 2013-08-06T04:39:34.923 回答