Zadejte hledaný výraz...

Facebook API dlouhe nacitani

Zdravim,
tak jsem se taky odhodlal k nejake FB aplikaci, stahl jsem si posledni SDKz gitu, vse nastavil, hodil na web, vse funguje perfektne - az na asi 6s nacitani samotneho API! Netusite cim by to mohlo byt zpusobeno?
Pripojovaci soubor je puvodni, includovan.. bez nej frci vse bleskove
require_once 'src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'xxxxx',
'secret' => 'xxxxxxxxxx',
));
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
$_SESSION=$user;
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
}
else {
$loginUrl = $facebook->getLoginUrl();
}
?>
Diky za pripadne napady ...
8. 1. 2013 18:41:39
https://webtrh.cz/diskuse/facebook-api-dlouhe-nacitani#reply850769
Pro odpověď se přihlašte.
Přihlásit