Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created an app on facebook that allow me to checkin though php scrip. Bu I have few problems/questions. - It's possible to have a popup window where I will select location, status message and also picture?! - By using code below I have to imput place id, latitude and longitude from the stat, but I would like to search places each time I will do a checkin.

What I trying to do, is to embead checkin button on my website and visitors will login from my website and will do a checkin and update statuses from there.

Have somebody did this before? How it's possible to do that?

I'm new in developing so I will be glad for any help. *Thank you in advance!*

<?php
include 'src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'XXXXXX',
'secret' => 'XXXXX',
'cookie' => true));
$session = $facebook->getUser();
$uid = null;
if(!empty($session)) {
try{
$uid = $facebook->getUser();
$api_call = array(
'method' => 'users.hasAppPermission',
'uid' => $uid,
'ext_perm' => 'publish_checkins');
$can_post = $facebook->api($api_call);
if($can_post){
$facebook->api('/'.$uid.'/checkins', 'POST', array(
'access_token' => $facebook->getAccessToken(),
'message' =>'Just a test checkin',
'picture' =>'http://upload.wikimedia.org/wikipedia/en/thumb/3/32/Wi-Fi_Logo.svg/220px-Wi-Fi_Logo.svg.png',
'coordinates' => json_encode(array(
'latitude'  => 'lattiude',
'longitude' => 'lattitude',
'tags' => $uid)
)) 
);
echo 'You were checked in';
} else {
die('Permissions required!');
}
}
catch (FacebookApiExeption $e)
{
echo $e->getMessage();
}
}
if ($uid)
{
$logoutUrl = $facebook->getLogoutUrl();
echo "<a href='$logoutUrl'>Logout</a>";
}
else
{
$loginUrl =$facebook->getLoginUrl(array(
'scope' => 'publish_stream, user_checkins, place, publish_checkins, user_location, user_status, friends_status, friends_checkins'));
echo "<a href='$loginUrl'>Login</a>";
}
?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.