Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to create a Facebook Application to create College Album type photo Gallery .

There is a demo app .

http://apps.facebook.com/293235854123427/

But i want to merge all photos into one image and also people can upload in there account ,

and also i want control the number of photos .

Source Code :

<?php
/**
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/

require 'sdk/src/facebook.php';

$fbconfig['appUrl'] = "http://apps.facebook.com/290287147742163/"; 

// Create An instance of our Facebook Application.
$facebook = new Facebook(array(
  'appId'  => 'app_id_here',
  'secret' => 'secret_key_here',
  'cookies' => 'true',
));




// Get the app User ID
$user = $facebook->getUser();

if ($user) {
      try {
        // If the user has been authenticated then proceed
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        error_log($e);
        $user = null;
      }
}

// If the user is authenticated then generate the variable for the logout URL
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();// This call will always work since we are fetching public data.

  ?>

<html>
<head>
<meta charset="utf-8">
<title>TEST</title>

</head>

<body>
<!--Resize Iframe-->
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>

 FB.Canvas.setAutoResize(7);

 </script>
 <!-- End Resize Iframe-->

 <?php
$me = $facebook->api('/me/friends');
    echo "<br />Total friends".sizeof($me['data'])."<br />";

    echo "<br /> Friends collage<br /><br />";
    foreach($me['data'] as $frns)
    {
    echo "<img  src=\"https://graph.facebook.com/".$frns['id']."/picture\" title=\"".$frns['name']."\"/>";

}


    echo "<br /><br /><br />    By <br /><a href=\"http://facebook.com/marcusfenix999\"><img src=\"https://graph.facebook.com/marcusfenix999/picture\" title=\"Vikas Kapadiya\"/></a>";
?>

<?php  
} else {
  $loginUrl = $facebook->getLoginUrl(array('redirect_uri' => $fbconfig['appUrl']));
  print "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
}

?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.