Okay as the title reads I've been trying to get Facebook's OAuth working on my localhost/, I've been strugguling with various problems but I just don't know whats up with my latest problem, which is that the page loads, and if the user is logged in, it show's the logout url and the UID like it should, and when I click the logout link it does log the user out from facebook, but on redirect or reload the UID still appears and so does the logout link. Long story short, I can't seem to make my site that's running in my localhost log me out of facebook AND on my site! Any thoughts would be a tremendous help, thanks in advanced for any posible solutions. Here is my code
<?php
session_start();
// store session data
include "src/facebook.php";
$facebook = new Facebook(Array(
"appId" => "xxx",
"secret" => "xxx"
));
$user = $facebook->getUser();
echo "UID: " . $user . "<br/>";
// THIS WAS MY FIRST TRY WHICH DIDNT SUCCEED
// if ($user) {
// $logoutUrl = $facebook->getLogoutUrl();
// echo "<a href='" . $logoutUrl . "'>Logout</a>";
// } else {
// $loginUrl = $facebook->getLoginUrl();
// echo "<a href='" . $loginUrl . "'>Login</a>";
// }
// WITH THE ABOVE CODE I GET:
// An error occurred with PHP-SDK. Please try again later.
// API Error Code: 191
// API Error Description: The specified URL is not owned by the application
// Error Message: Invalid redirect_uri: Given URL is not allowed by the Application configuration.
// THIS WAS MY SECOND TRY AFTER SEARCHING FOR INFO,
// ALL I DID WAS MANUALLY ADD THE
// REDIRECT URI AND ADDED ? , THE REASON IS IF I DIDN'T ADD IT,
// IT WOULD GIVE ME AN CSRF ERROR
// STATING THAT THE STATE VALUE IS NOT CORRECT, I SEARCHED FOR THE SOLUTION
// FOR THAT PROBLEM WITH NO LUCK SO I TRIED THIS
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
echo "<a href='" . $logoutUrl . "'>Logout</a>";
} else {
$loginUrl = $facebook->getLoginUrl(Array(
"redirect_uri" => "http://localhost/php-sdk/index.php?"
));
echo "<a href='" . $loginUrl . "'>Login</a>";
}
// WITH THE ABOVE CODE I NOW GET A UID AND THE LOGOUT URL DOES APPEAR, BUT ONCE I CLICK IT
// THE USER IS LOGGED OUT LIKE HE SHOULD BUT THEN ON REDIRECT OR RELOAD THE UID STILL
// APPEARS AND SO DOES THE LOGOUT LINK, EVEN THOUGH THE USER IS NOT LOGGED IN!!
?>
This is my first question that I've posted to StackOverflow, so if you can, tell me how to improve my question for later times, like I said thanks in advanced for any posible solutions!