-1

我想知道是否有任何银行为开发人员(特别是 android)提供 api,以便他们可以让用户输入他们的帐户信息(可能只是用户名而不是密码),然后 api 可以从帐户中检索帐户余额。我认为它可能是安全的,因为它只是阅读而不是写作。

有人免费做这个吗?

Facebook/twitter/tumbler 这样做允许其他网站在他们的应用程序中集成此功能,所以我想知道银行是否也这样做。

有人知道吗?

谢谢

4

2 回答 2

0

你是说它是安全的吗?如果我们可以选择通过仅使用帐号来获取帐户信息,它就会泄露安全性。

据我所知,没有这样的 api 可以提供银行用户详细信息。连银行也说,如果有第三人问银行详细信息,从来不给他们,

而银行总是忠实地隐藏客户的信息,这是银行规则的完整性。

于 2014-06-15T05:47:44.583 回答
0

Mint在Yodlee上是一张漂亮的脸,但Intut 在 2011 年购买它们时改变了这一点。 Yodlee 有一个ruby​​ api。其使用示例如下:

require 'rubygems'
require 'yodlee'

# Create some credentials to login with.
cred = Yodlee::Credentials.new
cred.username = 'bob'
cred.password = 'weak'

# The word the remote system stores and shows back to you to prove
# they really are Yodlee.
cred.expectation = 'roflcopter'

# An array of questions and answers. Yodlee expects you to answer
# three of thirty defined in Yodlee::Credentials::QUESTIONS.
cred.answers = [[Yodlee::Credentials::QUESTIONS[1], "The Queen"], [...]]

# That's enough credentials. Create a connection.
conn = Yodlee::Connection.new(cred)

# Connect, and get an account list.
conn.accounts.each do |account|
  puts account.institute_name, account.name, account.current_balance

  # grab a handy list of transactions. Parseable as CSV.
  puts account.simple_transactions

  # Next line needs johnson.
  # p account.transactions

  # take a look in account.account_info for a hash of useful stuff.
  # available keys vary by account type and institute.
end

# Should look something like this:

First Bank of Excess
Checking
$123.45
[...some csv...]
First Bank of Mattress
Savings
$1,234.56
[...more csv!...]

希望有帮助。如果您需要更多信息,请发表评论。

于 2014-06-15T05:58:43.740 回答