diff --git a/bridges/InstagramBridge.php b/bridges/InstagramBridge.php
index 77a48e68..6fe49439 100644
--- a/bridges/InstagramBridge.php
+++ b/bridges/InstagramBridge.php
@@ -37,6 +37,10 @@ class InstagramBridge extends BridgeAbstract {
'Picture' => 'picture',
),
'defaultValue' => 'all'
+ ),
+ 'direct_links' => array(
+ 'name' => 'Use direct image links',
+ 'type' => 'checkbox',
)
)
@@ -80,6 +84,8 @@ class InstagramBridge extends BridgeAbstract {
returnClientError('Stories are not supported for hashtags nor locations!');
}
+ $directLink = !is_null($this->getInput('direct_links')) && $this->getInput('direct_links');
+
$data = $this->getInstagramJSON($this->getURI());
if(!is_null($this->getInput('u'))) {
@@ -136,7 +142,11 @@ class InstagramBridge extends BridgeAbstract {
$item['content'] = $data[0];
$item['enclosures'] = $data[1];
} else {
- $mediaURI = self::URI . 'p/' . $media->shortcode . '/media?size=l';
+ if($directLink) {
+ $mediaURI = $media->display_url;
+ } else {
+ $mediaURI = self::URI . 'p/' . $media->shortcode . '/media?size=l';
+ }
$item['content'] = '';
$item['content'] .= '
';
$item['content'] .= '
' . nl2br(htmlentities($textContent));