会社には、名前、Web サイト、従業員番号などのアカウント レコード情報を取得する必要がある Web ページがあります。Salesforce レコード 1D は Web ページに認識されており、JavaScript を使用してアカウント情報を取得します。 どの統合方法が最適ですか?
正解:D
For retrieving specific records using a known ID, the REST API is optimal due to its stateless, cacheable communications and lightweight structure. It's ideal for web applications that use JavaScript to make requests directly from the user's browser. Using the REST API, the web page can make a simple HTTP GET request to the Salesforce REST service endpoint and retrieve the account information in a format that's easily handled by JavaScript (typically JSON). References: REST API Developer Guide