Passed
Push — master ( e34333...86363a )
by Rakesh
42s queued 10s
created

appconfig.php (1 issue)

1
<?php
2
require_once 'lib\Facebook\autoload.php';
3
4
require_once('lib/Facebook/GraphNodes/GraphObject.php');
5
require_once('lib/Facebook/GraphNodes/GraphSessionInfo.php');
6
require_once('lib/Facebook/Authentication/AccessToken.php');
7
require_once('lib/Facebook/HttpClients/FacebookCurl.php');
8
require_once('lib/Facebook/HttpClients/FacebookCurlHttpClient.php');
9
require_once('lib/Facebook/Helpers/FacebookRedirectLoginHelper.php' );
10
require_once('lib/Facebook/FacebookRequest.php' );
11
require_once('lib/Facebook/FacebookResponse.php' );
12
require_once('lib/Facebook/Exceptions/FacebookSDKException.php' );
13
require_once('lib/Facebook/Exceptions/FacebookAuthorizationException.php' );
14
15
    $appId = '359690587983062'; // Facebook App id 589129311570125 589129311570125
16
    $appSecret = 'ee50a6453ab0da99c80521144f8baefe'; //92f90e5dff5c6bdc2da0281631ec0446  538cd04f971479ff14dc409df2fbcf3b
17
    $CallbackUrl = 'https://localhost/rtCamp/fb-callback.php';
18
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...