2016-07-14 85 views
0

我有关于连接beetewen Salesforce数据库和Shiny应用程序的问题。我在这里发现了一些信息enter link description here,但是它是两年前。在我的应用程序中,我有这个comunicat:NOT_FOUND: The requested resource does not exist。有没有解决这个问题的方法。我是Salesforce中的新成员。 感谢您的帮助!Shiny应用程序不会在salesforce数据库上运行

+0

您需要检查您的应用连接到SF的属性,特别是Salesforce URL。 –

+0

我使用这个解决方案:shinyServer(函数(输入,输出){ username < - “...” password < - “...” instanceURL < - “https://eu4.salesforce.com/” apiVersion < - “26.0” 会话< - rforcecom.login(用户名,密码,instanceURL,apiVersion) description_Account < - 反应({ A < - rforcecom.getObjectDescription(会话, “Acount”) A}) 输出$ table_1 < - renderDataTable({description_Account() }) })@Last Khajiit –

回答

0

我想我找到了解决方案。我有这个错误:

Error in rforcecom.login(username, password, instanceURL, apiVersion) : LOGIN_MUST_USE_SECURITY_TOKEN: Invalid username, password, security token; or user locked out. Are you at a new location? When accessing Salesforce--either via a desktop client or the API--from outside of your company’s trusted networks, you must add a security token to your password to log in. To get your new security token, log in to Salesforce. From your personal settings, enter Reset My Security Token in the Quick Find box, then select Reset My Security Token.

我在Salesforce中重置了我的安全令牌。我有新的Salesforce安全令牌。我刚刚添加了一个安全令牌到我的密码和我的应用程序的作品。

相关问题