i developed an small facebook application , i have an login button.
<fb:login-button scope="email,user_about_me,user_interests,user_location,publish_stream," width="width_value" size="large">Login with Facebook</fb:login-button>
When user click Login with facebook button authentication dialog box appears asks for the permission also. But user cannot login, same page appears again with login with facebook.
i hosted the the file in chitiknowit.com\fbapp\index.php when i go through the url i can login . but in facebook appication(inside facebook.com) i cannot login ..
<?php
session_start();
define('YOUR_APP_ID', 'xxxxxxxxxx');
define('YOUR_APP_SECRET', 'xxxxxxxxxxxxxx');
function get_facebook_cookie($app_id, $app_secret) {
$signed_request = parse_signed_request(@$_COOKIE['fbsr_' . $app_id], $app_secret);
// $signed_request should now have most of the old elements
$signed_request['uid'] = $signed_request['user_id']; // for compatibility
if (!is_null($signed_request)) {
// the cookie is valid/signed correctly
// lets change "code" into an "access_token"
// openssl must enable on your server inorder to access HTTPS
$access_token_response = file_get_contents("https://graph.facebook.com/oauth/access_token?client_id=$app_id&redirect_uri=&client_secret=$app_secret&code={$signed_request['code']}");
parse_str($access_token_response);
$signed_request['access_token'] = $access_token;
$signed_request['expires'] = time() + $expires;
}
return $signed_request;
}
$auth="https://www.facebook.com/dialog/oauth/?
client_id=$app_id
&redirect_uri=http://chitiknowit.com/fbapp/gen.php
&state=YOUR_STATE_VALUE
&scope=COMMA_SEPARATED_LIST_OF_PERMISSION_NAMES";
function parse_signed_request($signed_request, $secret) {
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
// decode the data
$sig = base64_url_decode($encoded_sig);
$data = json_decode(base64_url_decode($payload), true);
if (strtoupper($data['algorithm']) !== 'HMAC-SHA256') {
error_log('Unknown algorithm. Expected HMAC-SHA256');
return null;
}
// check sig
$expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true);
if ($sig !== $expected_sig) {
error_log('Bad Signed JSON signature!');
return null;
}
return $data;
}
function base64_url_decode($input) {
return base64_decode(strtr($input, '-_', '+/'));
}
if (isset($_COOKIE['fbsr_' . YOUR_APP_ID]))
{
$cookie = get_facebook_cookie(YOUR_APP_ID, YOUR_APP_SECRET);
$user = json_decode(file_get_contents('https://graph.facebook.com/'.$cookie['uid']));
}
?>