アカウントタブに iframe セクションを埋め込みたい。Standart Controller - Account を使用して、簡単な Visualforce ページを作成しました。
<apex:page standardController="Account">
<h1>Congratulations</h1>
This is your new Page
<div>
<apex:iframe src="https://www.facebook.com/" width="800" height="600" />
</div>
</apex:page>
アカウント レイアウトに VisualForce セクションを追加しました。しかし、結果の詳細ページに iframe コンテンツが表示されません。iframe が Salesforce ドメインに関連している場合にのみ、iframe コンテンツがレンダリングされるようです。
だから私の質問は: 外部ドメイン ページを標準の詳細ページに埋め込むことは可能ですか?