Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
OpenLink
Bazı seçeneklerle bir bağlantıyı açma işlemini temsil eder.
Google Workspace eklentilerinde ve Google Chat uygulamalarında kullanılabilir.
// A button that opens as a link in an overlay and
// requires a reload when closed.
var button = CardService.newTextButton()
.setText("This button opens a link in an overlay window")
.setOpenLink(CardService.newOpenLink()
.setUrl("https://www.google.com")
.setOpenAs(CardService.OpenAs.OVERLAY)
.setOnClose(CardService.OnClose.RELOAD_ADD_ON));
// An action response that opens a link in full screen and
// requires no action when closed.
var actionResponse = CardService.newActionResponseBuilder()
.setOpenLink(CardService.newOpenLink()
.setUrl("https://www.google.com")
.setOpenAs(CardService.OpenAs.FULL_SIZE)
.setOnClose(CardService.OnClose.NOTHING))
.build();
Not: Bir bağlantıyı kapattıktan sonra eklentileri yeniden yüklemek için
Cross-Origin-Opener-Policy (COOP) başlığı etkinleştirildi. Bir bağlantıda COOP etkinse eklentiler
ve eklenti kartı güncellenmez.
[[["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: 2024-08-21 UTC."],[[["`OpenLink` allows Google Workspace Add-ons and Google Chat apps to open specified URLs with customizable behaviors."],["Developers can set how the link opens (overlay or full-screen) and the action taken when it's closed (reload add-on or do nothing)."],["The `OpenLink` object provides methods like `setOnClose`, `setOpenAs`, and `setUrl` for configuration."],["When using `setOnClose` to reload add-ons, avoid links with Cross-Origin-Opener-Policy (COOP) enabled for proper functionality."]]],[]]