2016-07-14 87 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安全令牌。我剛剛添加了一個安全令牌到我的密碼和我的應用程序的作品。

相關問題