Open lukekulik opened 4 months ago
Keterangan
Menurut dokumentasi pengembang Google Workspace , objek acara harus berisi
docs.id
dandocs.title
apakahhttps://www.googleapis.com/auth/drive.file
cakupannya telah diizinkan oleh pengguna.Namun, hal ini tidak berlaku dalam praktik saat mencoba menerapkan kode contoh yang disediakan Google untuk chip pintar dengan
drive.file
cakupan OAuth yang ditambahkan. Objek acara dokumen hanya berisi dan danmatchedUrl
tidak ada .docs.id``docs.title
Kode
Kode dari https://github.com/googleworkspace/add-ons-samples/tree/main/python/3p-resources dengan cakupan OAuth tambahan yang ditambahkan (
https://www.googleapis.com/auth/drive.file
) dan pernyataan debug cetak untukevent
dicreate_link_preview/main.py
Keluaran
{'commonEventObject': {'hostApp': 'DOCS', 'platform': 'WEB'}, 'authorizationEventObject': {'userOAuthToken': 'token1', 'userIdToken': 'token2', 'systemIdToken': token3'}, 'docs': {'matchedUrl': {'url': 'https://example.com/?name=123'}}}
Perhatikan baris terakhir pada keluaran yang hanya berisi
matchedUrl
bidang tersebut.Langkah-langkah untuk mereplikasi
- Terapkan kode contoh yang disediakan Google ke Cloud Functions
- Buat, instal, dan otorisasi add-on Google Workspace
- Tempel tautan contoh yang memicu ekstensi
- Periksa log untuk fungsi cloud yang diterapkan untuk memverifikasi konten objek peristiwa
UQC53Sk3lkCm0E7kSejCsBk8z9f_Yf4ndp-MNNUjRhG5O0KV
Description
According to Google Workspace developer documentation docs event object should contain
docs.id
anddocs.title
if thehttps://www.googleapis.com/auth/drive.file
scope has been authorized by the user.However this is not the case in practice when attempting to deploy Google-provided example code for smart chips with the
drive.file
OAuth scope added. The docs event object only containsmatchedUrl
and it's missingdocs.id
anddocs.title
.Code
Code from https://github.com/googleworkspace/add-ons-samples/tree/main/python/3p-resources with additional OAuth scope added (
https://www.googleapis.com/auth/drive.file
) and a print debug statement forevent
increate_link_preview/main.py
Output
Note the last line in the output which only contains the
matchedUrl
field.Steps to replicate