Bir facebook iframe uygulamasında bir facebook kullanıcısının kullanıcı kimliği almak nasıl?

0 Cevap php

Ben PHP istemci kütüphanesi ile bir Facebook iframe / Facebook Connect uygulama geliştiriyorum. Benim dizin sayfa, ben kullanıcı kullanarak açtıysa kontrol require_login().

 $user_id = $facebook->require_login($required_permissions = 'user_location,publish_stream,email,read_stream,user_about_me,user_activities,user_birthday,user_events,user_groups,

user_hometown, USER_INTERESTS, user_likes, user_status, user_photos);

Thus I get the $user_id of the user in that page. But in the subsequent pages, If I use require_login() to get the user_id, some prablem occurs and the page ie not redirected. The page gets refreshing and nothing is displayed.

Yani $user_id = $facebook->get_loggedin_user(); kullanarak denedim ama sonra değişkeninde kullanıcı kimliği alamadım.

I $user_id = $_GET[fb_sig_user]; kullanırsanız, bazen ben, bazen yok, değeri olsun. De diğer sayfalarda user_id almak için bana doğru yöntemini tavsiye edin.

0 Cevap