Google Cloud におけるアプリ開発環境の設定: チャレンジラボ のレビュー

323043 件のレビュー

PALLAVI DANABOYINA · 3日前にレビュー済み

满意

Qin Ying · 3日前にレビュー済み

Ksontini Marwa · 3日前にレビュー済み

STUDENT - AEROSPACE ANANTA · 3日前にレビュー済み

Elakkat Ranjith · 3日前にレビュー済み

cebov rez · 3日前にレビュー済み

M D Pankaja · 3日前にレビュー済み

Muyambo Tawanda · 3日前にレビュー済み

Nisar Sasin · 3日前にレビュー済み

saito kohei · 3日前にレビュー済み

Patel Aakash · 3日前にレビュー済み

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); } });

SAPUTRA Randi · 3日前にレビュー済み

Elakkat Ranjith · 3日前にレビュー済み

KAWADA Takatoshi · 3日前にレビュー済み

SHARMA MS.LOVELY · 3日前にレビュー済み

M Shiva Shankar Prakash · 3日前にレビュー済み

Shrivastava Pallavi · 3日前にレビュー済み

Phung Ngoc · 3日前にレビュー済み

good

Tholeti Gopi · 3日前にレビュー済み

Sanchez Fuentes Bernal Esteban · 3日前にレビュー済み

Kmita Piotr · 3日前にレビュー済み

Bhagat Ruddhi · 3日前にレビュー済み

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

Aguilar Luis · 3日前にレビュー済み

Won Liz · 3日前にレビュー済み

Satisfeito

Tavares Carlos · 3日前にレビュー済み

公開されたレビューが、製品を購入または使用した人によるものであることは保証されません。Google はこれらのレビューの検証を行っていません。