Set Up an App Dev Environment on Google Cloud: Challenge Lab Reviews

323043 reviews

DANABOYINA P. · Reviewed 3 дней ago

满意

Ying Q. · Reviewed 3 дней ago

Marwa K. · Reviewed 3 дней ago

ANANTA S. · Reviewed 3 дней ago

Ranjith E. · Reviewed 3 дней ago

rez c. · Reviewed 3 дней ago

Pankaja M. · Reviewed 3 дней ago

Tawanda M. · Reviewed 3 дней ago

Sasin N. · Reviewed 3 дней ago

kohei s. · Reviewed 3 дней ago

Aakash P. · Reviewed 3 дней ago

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. · Reviewed 3 дней ago

Ranjith E. · Reviewed 3 дней ago

Takatoshi K. · Reviewed 3 дней ago

MS.LOVELY S. · Reviewed 3 дней ago

Shiva Shankar Prakash M. · Reviewed 3 дней ago

Pallavi S. · Reviewed 3 дней ago

Ngoc P. · Reviewed 3 дней ago

good

Gopi T. · Reviewed 3 дней ago

Bernal Esteban S. · Reviewed 3 дней ago

Piotr K. · Reviewed 3 дней ago

Ruddhi B. · Reviewed 3 дней ago

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. · Reviewed 3 дней ago

Liz W. · Reviewed 3 дней ago

Satisfeito

Carlos T. · Reviewed 3 дней ago

We do not ensure the published reviews originate from consumers who have purchased or used the products. Reviews are not verified by Google.