我正在尝试采用 databasedotcom gem,但无法超越身份验证。这是我所做的(在安装 databasedotcom gem 之后):
- rails c(或irb然后需要'databasedotcom')
- client=Databasedotcom::Client.new :client_id => 'foo', :client_secret=>'bar'
- client.ca_file = '/Users/tjiang/missioncontrol/tmp/ca-bundle.crt'
- client.verify_mode = OpenSSL::SSL::VERIFY_PEER
- client.authenticate :username=>'myusername', :password=>'mypassword'
所有凭据都在此过程中复制并粘贴,因此不会出现错误;证书在这里下载:http: //certifie.com/ca-bundle/ca-bundle.crt.txt
我反复尝试了 Ruby 187 和 193 以及 Rails 内部和外部,但总是收到以下错误消息:
Databasedotcom::SalesForceError:来自 /Library/Ruby/Gems/1.8/gems/databasedotcom-1.3.0/lib/databasedotcom/client.rb:112:in 'authenticate' 的身份验证失败
我想知道我在这里错过了什么?特别是,我担心在 Salesforce 中创建远程访问时使用的回调 URL(我尝试了“oob”、“http://localhost:3000”和“https://www.salesforce.com”,但没有有什么不同)。