diff --git a/socialfeed.admin.inc b/socialfeed.admin.inc
index 72c2017..399954f 100644
--- a/socialfeed.admin.inc
+++ b/socialfeed.admin.inc
@@ -269,7 +269,7 @@ function socialfeed_instagram_settings($form, &$form_state) {
     $form['socialfeed_instagram_feed'] = array(
       '#type' => 'item',
       '#title' => t('Feed URL'),
-      '#markup' => t('https://api.instagram.com/v1/users/self/feed?access_token=@socialfeed_instagram_access_token&count=@socialfeed_instagram_picture_count',
+      '#markup' => t('https://api.instagram.com/v1/users/self/media/recent?access_token=@socialfeed_instagram_access_token&count=@socialfeed_instagram_picture_count',
         array(
           '@socialfeed_instagram_access_token' => variable_get('socialfeed_instagram_access_token'),
           '@socialfeed_instagram_picture_count' => variable_get('socialfeed_instagram_picture_count', 1),
diff --git a/socialfeed.block.inc b/socialfeed.block.inc
index ce33a71..4580a12 100644
--- a/socialfeed.block.inc
+++ b/socialfeed.block.inc
@@ -387,7 +387,7 @@ function socialfeed_instagram_posts() {
   $instagram_post_link = variable_get('socialfeed_instagram_post_link');
   $resolution = variable_get('socialfeed_instagram_picture_resolution');
   $access_token = variable_get('socialfeed_instagram_access_token');
-  $url = "https://api.instagram.com/v1/users/self/media/recent/?access_token=" . variable_get('socialfeed_instagram_access_token') . '&count=' . variable_get('socialfeed_instagram_picture_count');
+  $url = "https://api.instagram.com/v1/users/self/media/recent?access_token=" . variable_get('socialfeed_instagram_access_token') . '&count=' . variable_get('socialfeed_instagram_picture_count');
   $request = drupal_http_request($url);
   $status = strtoupper($request->status_message);
 
diff --git a/socialfeed.module b/socialfeed.module
index 05560c2..e6e15fc 100644
--- a/socialfeed.module
+++ b/socialfeed.module
@@ -81,7 +81,7 @@ function socialfeed_theme($existing, $type, $theme, $path) {
       'path' => drupal_get_path('module', 'socialfeed') . '/templates',
     ),
     'socialfeed_instagram' => array(
-      'variables' => array('instagram_images' => NULL),
+      'variables' => array('instagram' => NULL),
       'template' => 'instagram',
       'path' => drupal_get_path('module', 'socialfeed') . '/templates',
     ),
diff --git a/templates/instagram.tpl.php b/templates/instagram.tpl.php
index e525a84..c60bd1e 100644
--- a/templates/instagram.tpl.php
+++ b/templates/instagram.tpl.php
@@ -10,7 +10,7 @@
  */
 ?>
 <ul>
-<?php foreach ($instagram_images as $instagram_image): ?>
+<?php foreach ($instagram as $instagram_image): ?>
   <li>
     <?php if (isset($instagram_image['post_url']) && !empty($instagram_image['post_url'])): ?>
     <a href="<?php echo $instagram_image['post_url'] ?>"><img src="<?php echo $instagram_image['image_url']; ?>"></a>
