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 just need simple and working facebook app. I bought ssl for this and i dont want too much expenses.

If user allowed app it will write his name and gender and his/her friends gender.

my app doesnt redirect after user allow the app. I cant fix it so just need basic app with out url redirecting.

ı used this code but it doesnt work. it need to be corrected:

require_once("facebook.php");
$facebook = new Facebook(array(
    'appId'  => '***',
    'secret' => '***',
  'scope'  => 'manage_pages,offline_access,publish_stream,user_photos'
));

$user = $facebook->getUser();

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    $user = null;
  }
}

if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
}
share|improve this question
what you say if your app is automatically get user name and gender ?? – Danish Iqbal Feb 7 '12 at 18:20
2  
You have 7 questions, all answered, but none with accepted answers. If you want people to help you, then show your appreciation by accepting answers to your questions. – Chris Pratt Feb 8 '12 at 18:08
@chris sorry, its my mistake. but there is no satisfied answer yet to my questions. – guybennet Feb 9 '12 at 19:50
Understandable, but the responsibility is on you to correct that. You can try rewording your question, providing additional information, etc. If the answers aren't quite there, ask the authors for additional information or if there's anything they need from you to provide a better answer. You can also post a bounty on your question after a couple of days to encourage more and higher quality answers. – Chris Pratt Feb 9 '12 at 19:54
1  
also ı dont know how to use stackoverflow, ı am new, noob on using stackof. for example: ı dont know what "post a bounty on your question" means. – guybennet Feb 9 '12 at 20:00
show 1 more comment

1 Answer

up vote 3 down vote accepted

Here is the simple one page application full fills your needs

make the file with name index.php

download the facebook library download here

<?php 

require_once 'library/facebook.php';


// Create our Application instance.
$facebook = new Facebook(array(
  'appId' => 'appid',
  'secret' => 'secret',
  'cookie' => true,
)); 

     $app_id = 'appid';

     $canvas_page = "canvas_page_link";


     $auth_url = "http://www.facebook.com/dialog/oauth?client_id=" 
            . $app_id . "&redirect_uri=" . urlencode($canvas_page) . ("&scope=email,read_stream&response_type=token");

     $signed_request = $_REQUEST["signed_request"];

     list($encoded_sig, $payload) = explode('.', $signed_request, 2); 

     $data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);

     if (empty($data["user_id"])) {
            echo("<script> top.location.href='" . $auth_url . "'</script>");
     } else {

     //getting the userid and some other data for verification 

     //get the user id 
            $UserId = $data["user_id"];
            echo 'UserId;' . $UserId;

    //get the user access token
            $token = $facebook->getAccessToken();
            echo "</br>" . 'Access_Token:' . $token;

    //set default access token and profile
            $facebook->setAccessToken($token);
            $user_profile = $facebook->api('/me');

     //get the user name 
            $user_id = $facebook->getUser();
            $user_profile = $facebook->api('/me','GET');
            $user_name = $user_profile['name'];
            echo "Name: " . $user_name;
            $user_gender = $user_profile['gender'];
            echo "Gender: " . $user_gender;

} 
?>
share|improve this answer
its not working. facebook.com/dialog/… – guybennet Feb 7 '12 at 18:51
@TurgutDursun whats error shown – Danish Iqbal Feb 9 '12 at 9:34
-there is an error pls try again later. link become this: facebook.com/dialog/… – guybennet Feb 9 '12 at 19:51
ok let me check again – Danish Iqbal Feb 10 '12 at 4:59
copy and paste the code in index.php completely and make some necessary changes – Danish Iqbal Feb 10 '12 at 6:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.