Gallery using external album\source?

Can I somehow (maybe using Code) link a gallery to a Google Photos\facebook\twitter\whatever album\folder, so that whenever photos are added or removed from the album\folder, the gallery is automatically updated accordingly?

Hi Tal,

Fetching images from an external resource can be achieved with fetch api.
Note that a login/authorization token is usually needed before you are granted access to the images.

Each service has its own requirements and implementation techniques.

For example this Facebook api allows you to use a GET request with the user ID parameter and receive the user’s images in the response. The Facebook token generator can be found here

Once you have the images URLs, you can populate the gallery to display the results. See more information here

1 Like