flux flickr API

Component ID

2061191

Component name

flux flickr API

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Downloads

1116

Component created

Component changed

Component body

Integrates with the flickr API based upon the flux Services integration.

This is an integration module, so it does not expose any end-user functionality. It integrates Drupal with the flickr API by providing remote entities and integration with the Rules module.

Similar projects

The flickr module provides a filter for inserting flickr photos and photosets in your content.

Requirements

API

  • The module connects to flickr via the Guzzle web service client and provides a clean API for developers to interact with flickr.
$account = entity_load_single('fluxservice_account', $id);
$photos = $account->client()->searchPhotos(array(
  'text' => 'Doc Brown',
  'format' => 'json',
));