我需要从我的 ROR 应用程序更新 salesforce(CRUD 操作)。我尝试使用 databasedotcom。它适用于 client_ID 和 client_secret。我的情况是,我不会得到client_ID
,client_secret
但我会从用户那里得到用户 salesforce 凭证(用户名/密码+安全令牌)。如何在没有 client_ID
and的情况下进行client_secret
。让我知道是否有其他宝石适合我的场景。
源代码
@@client = Databasedotcom::Client.new("config/databasedotcom.yml")
@@client.authenticate :username => username, :password => password+securitytoken
@@client.sobject_module =SFDC_Models
@@client.materialize('User')
@user =SFDC_Models::User.all
@@client.create("Account",account_attr)