Bir enum'ı çağırmak için üst sınıfını, adını ve özelliğini çağırmanız gerekir. Örneğin,
HtmlService.XFrameOptionsMode.ALLOWALL.
XFrameOptionsMode.ALLOWALL ayarı, herhangi bir sitenin sayfayı iFrame'e almasına izin verir. Bu nedenle, geliştiricinin tıklama korsanlığına karşı kendi korumasını uygulaması gerekir.
Bir komut dosyası X-Frame-Options modunu ayarlamazsa Apps Komut Dosyası varsayılan olarak DEFAULT
modunu kullanır.
// Serve HTML with no X-Frame-Options header (in Apps Script server-side code).constoutput=HtmlService.createHtmlOutput('<b>Hello, world!</b>');output.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
Özellikler
Mülk
Tür
Açıklama
ALLOWALL
Enum
X-Frame-Options başlığı ayarlanmamış. Bu, herhangi bir sitenin sayfayı iFrame'e yerleştirmesine olanak tanır. Bu nedenle, geliştiricinin tıklama sahtekarlığına karşı kendi korumasını uygulaması gerekir.
DEFAULT
Enum
Normal güvenlik varsayımlarını koruyan X-Frame-Options başlığı için varsayılan değeri ayarlar. Bir komut dosyası X-Frame-Options modu ayarlamazsa Apps Komut Dosyası bu modu varsayılan olarak kullanır.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2026-03-06 UTC."],[],["`XFrameOptionsMode` is an enum for setting `X-Frame-Options` in client-side HtmlService scripts. Accessed via `HtmlService.XFrameOptionsMode`, it's set using `HtmlOutput.setXFrameOptionsMode(mode)`. `ALLOWALL` removes the `X-Frame-Options` header, enabling any site to iframe the page, necessitating developer-implemented clickjacking protection. `DEFAULT` is the default mode if no mode is specified. The example shows how to set the mode to `ALLOWALL`.\n"]]