Chromium browsers only
A Pen by Michelle Barker on CodePen.
| const username = "" | |
| const password = "" | |
| const fs = require('fs'); | |
| const libpath = require('path'); | |
| const { GPhotos } = require('upload-gphotos'); | |
| const gphotos = new GPhotos(); |
| // Load single image | |
| // replace images/photo6244288433388366130.jpg with your image path | |
| // You can find it on the firebase storage console | |
| var imgRef = firebase.storage().ref().child('images/photo6244288433388366130.jpg'); | |
| imgRef.getDownloadURL().then(function(url){ | |
| var img = document.getElementById('img1'); | |
| img.src = url; | |
| }).catch(function(error) { |
Chromium browsers only
A Pen by Michelle Barker on CodePen.