关于“在 Google Cloud 上设置应用开发环境:实验室挑战赛”的评价

323043 条评价

DANABOYINA P. · 已于 3 days前审核

满意

Ying Q. · 已于 3 days前审核

Marwa K. · 已于 3 days前审核

ANANTA S. · 已于 3 days前审核

Ranjith E. · 已于 3 days前审核

rez c. · 已于 3 days前审核

Pankaja M. · 已于 3 days前审核

Tawanda M. · 已于 3 days前审核

Sasin N. · 已于 3 days前审核

kohei s. · 已于 3 days前审核

Aakash P. · 已于 3 days前审核

must update flow test, and index.js failed create for fail parsing bucket name, etc const functions = require('@google-cloud/functions-framework'); const { Storage } = require('@google-cloud/storage'); const { PubSub } = require('@google-cloud/pubsub'); const sharp = require('sharp'); functions.cloudEvent('memories-thumbnail-generator', async (cloudEvent) => { console.log('FULL EVENT:', JSON.stringify(cloudEvent)); const data = cloudEvent.data || {}; // fallback parsing const bucketName = data.bucket || data.data?.bucket; const fileName = data.name || data.data?.name; console.log(`Bucket: ${bucketName}`); console.log(`File: ${fileName}`); if (!bucketName || !fileName) { console.error('Missing bucket or filename'); return; } if (fileName.includes('64x64_thumbnail')) { console.log('Thumbnail already exists'); return; } const ext = fileName.split('.').pop().toLowerCase(); if (!['jpg', 'jpeg', 'png'].includes(ext)) { console.log('Unsupported file type'); return; } const storage = new Storage(); const bucket = storage.bucket(bucketName); const filenameWithoutExt = fileName.substring( 0, fileName.length - ext.length - 1 ); const newFilename = `${filenameWithoutExt}_64x64_thumbnail.${ext}`; try { const [buffer] = await bucket.file(fileName).download(); const resizedBuffer = await sharp(buffer) .resize(64, 64, { fit: 'inside', withoutEnlargement: true, }) .toFormat(ext) .toBuffer(); await bucket.file(newFilename).save(resizedBuffer, { metadata: { contentType: `image/${ext}`, }, }); console.log(`Created ${newFilename}`); const pubsub = new PubSub(); await pubsub .topic('topic-memories-423') .publishMessage({ data: Buffer.from(newFilename), }); console.log('Pub/Sub message published'); } catch (err) { console.error(err); } });

Randi S. · 已于 3 days前审核

Ranjith E. · 已于 3 days前审核

Takatoshi K. · 已于 3 days前审核

MS.LOVELY S. · 已于 3 days前审核

Shiva Shankar Prakash M. · 已于 3 days前审核

Pallavi S. · 已于 3 days前审核

Ngoc P. · 已于 3 days前审核

good

Gopi T. · 已于 3 days前审核

Bernal Esteban S. · 已于 3 days前审核

Piotr K. · 已于 3 days前审核

Ruddhi B. · 已于 3 days前审核

I could not start the lab. I got the error: Unable to create your bucket at this time. Try again or contact your administrator.

Luis A. · 已于 3 days前审核

Liz W. · 已于 3 days前审核

Satisfeito

Carlos T. · 已于 3 days前审核

我们无法确保发布的评价来自已购买或已使用产品的消费者。评价未经 Google 核实。