我使用Ruby Gem“databascdotcom”将Salesforce集成到Rails应用程序中,一切正常。
但是在第一次调用salesforce时出现以下错误:
**The requested resource does not exist**
如果我再次刷新(Ctrl + F5)页面,它可以正常工作而不会出现任何错误。
这是我的代码:
def SalesForceFeed
@oppID = params[:oppid]
client = Databasedotcom::Client.new client.client_id #=> foo client.client_secret #=> bar
client.authenticate :username => "foo@bar.com", :password => "ThePasswordTheSecurityToken" #=> "the-oauth-token"
client.materialize("Opportunity")
begin
@client=SalesForce::Connection.new.client
@opp = Opportunity.find_by_Id(@oppID)
rescue Exception=>e
if(e.message == "The requested resource does not exist")
return redirect_to :action => 'SalesForceFeed', :oppid => @oppID
end
end
在第一次调用“SalesForceFeed”时,它返回错误“请求的资源不存在”,所以我添加了一个excepton检查并再次调用“SalesForceFeed”,但我知道这不是正确的方法。
请建议我更好的解决方法。感谢。
答案 0 :(得分:0)
最后我得到了这个问题。在物化中添加了错误的对象。我删除了它,它已修复。