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.

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Real time checkins stop working after app is uninstalled and reinstalled

We are working on an iPhone app that uses Facebook's realtime checkin data. We noticed that if we uninstall the app and reinstall the app, we see one of the two issues: Facebook realtime updates ...
0
votes
0answers
12 views

Get the type of a status (desktop or mobile) with user_status permission

I would like to get user's checkins, that's why I am using the user_status permission, according to the documentation. Is it possible to get the type of a status (mobile or desktop) with this ...
0
votes
3answers
70 views

Getting friends' facebook check-ins into a place

I'm trying to find which of my friends have been to Paris before. I'm trying to use the Graph API to do this. So basically there's the place id (for Paris it's 110774245616525), I can get basic ...
0
votes
1answer
75 views

how to checkin a place in facebook sdk 3 Android

I want to check in a place using Facebook sdk 3.And it should be post in wall as a check in .I have the place id .does any one have idea how to do it and any code >>
1
vote
1answer
39 views

How to get lat/lng from Facebook's location IDS

I have an Android/Web app where users login through FBConnect, now I have location IDs how do I convert those location IDs to lat/lng ? e.g: these are sample location IDs with country and/or city ...
3
votes
0answers
214 views

Facebook Checkin API By Place ID Get All Users List

I want to get all the Users of Check-In at my Place. But Facebook provides only those Users which are available in my Friends List. I have tried with the below link. ...
0
votes
1answer
118 views

Can't get facebook checkins, data array always empty

I have a strange behavior when trying to get the checkins of a place or user: the result is always an empty data array: { "data": [ ] } This happens when I use the Graph Explorer: ...
0
votes
0answers
19 views

Checking in without a place (geocoordinates)

Is it possible to post a checkin to a user's timeout without supplying a "place_id"? Our database of locations mostly do not have Facebook "place" equivalents, but all have lat/long coordinates. Is ...
1
vote
0answers
180 views

graph api to check in with facebook ios sdk 3.1.1

I am using facebook sdk 3.1.1 for login as well as check in with facebook. login with facebook its working fine but CheckIn with using graph API give error. This are al the permission i am giving for ...
2
votes
1answer
168 views

Friends checkins with facebook graph api and rails - APIError

I am trying to get a users friends checkins, I am using omniauth and koala gem. When a user gets saved this method hits: def add_friends friends_data = facebook.get_connections("me", "friends", ...
0
votes
1answer
99 views

Facebook Android Checkins

Ok so I have been researching the facebook api and Noticed that they released a new SDK. I have been trying to implement a checkin to a known place id. I have seen posts that use the ...
1
vote
1answer
218 views

Get facebook user checkins

I need to get a list of a facebook user checkins both in photos and in status. I tried to use graph api to query /me/locations' like: $this->api->api('/me/locations?limit=1000'); It ...
0
votes
1answer
307 views

How to post checkin using facebook API [closed]

I want to use the checkin feature of facebook in iphone app, so that user can get the current location and time of the post. How can i do this. I am using Graph API. Thanks in advance.
1
vote
1answer
117 views

Associate facebook user check-ins to list of cities based on latitude and longitude

I am studying the development of an application that would show a user which cities in the world their friends have traveled to. To do this, I was thinking of getting a list of check-ins for each of ...
1
vote
2answers
187 views

How to I get all the checkins a user is tagged in using FQL

Using the graph api it's possible to do: https://graph.facebook.com/me/checkins But how am I supposed to do it with FQL? I tried this which suggests: SELECT message FROM checkin WHERE author_uid ...
0
votes
0answers
114 views

Checking Friends Checkins on a Facebook Page (Permissions)

I'm trying to get checkins made by my friends on a facebook page. It works perfectly in the Graph Api Explorer. I'm using 'pageId'/checkins. But through my app I only get my checkins returned, not my ...
0
votes
2answers
100 views

facebook authentication using actionscript

I am trying to use actionscript 3.0 API for Facebook authentication. I am able to authenticate successfully but I need user email id. Can some one provide me example of how to get details with ...
0
votes
1answer
918 views

How can I know the people who check-in my Facebook fan page? [closed]

Every Wednesday I receive Weekly Facebook Page Update. I saw how many people check-in to my fan page inside. But there are no information of who are those people. How can I get the information of ...
0
votes
1answer
98 views

Facebook checkins, user access tokey is required

I am able to access checkins and locations by url, using the Graph API Explorer with my app. So, the user tokens seem to be OK. Now, when I try : $ curl "https://graph.facebook.com/[my ...
0
votes
1answer
108 views

How long limit parameter supported for Facebook check-in Graph API?

I'm trying the below Facebook API to getting my friends' check-in around a specified location. https://graph.facebook.com/search?type=checkin&center=xx,xx&since=XX-XX-XX Here I have a ...
-1
votes
1answer
69 views

Get checkins of friends of friends within given radius and lat/long

I have a requirement wherein i want to show strangers in a given location and within 1000 meters of radius. So for strangers i feel the only way is to show my friends' friends. As they can be ...
2
votes
2answers
606 views

how to find friend's past checkins near a location?

In my app, a user is at a location and is looking for her friends who have been anywhere withing 10 miles of where she is. How do I find this with either FQL or graph? The only way that I can see is ...
-2
votes
1answer
206 views

remove html codes when posting URL in the wall

When i paste a url on the facebook wall, it displays the image and also gets the description from the URL, but in my case the description comes with html codes, how to just display the description. ...
0
votes
1answer
583 views

different versions of facebook for location based development?

I am working on an app that uses facebook's check in feature from mobile phones. I have created multiple versions of the app on facebook so that i can keep production, test and development separated. ...
3
votes
1answer
494 views

Can i find the number of people who are currently checked-in in a facebook place?

I want to build a desktop application which searches for the number of people who are currently checked-in in a facebook place, something like an equivalent for the foursquare's hereNow. I've ...
-2
votes
1answer
108 views

Using facebook check-in deals on a third party app [closed]

Is it possible for a user, who has been authenticated on the facebook platform through my app, to check-in to a business and then for my app to display any check-in deal that facebook may have? Is it ...
0
votes
1answer
137 views

how to integrate facebook check in feature inside iphone app?

I need to show list of hotels in nearby location using facebook check in feature. How should i implement this in my app?
0
votes
1answer
426 views

Search Facebook Check-ins at given place

Is it possible to search and get user checkins or friend's checkins for a given place(lat/lon)?
-5
votes
1answer
154 views

Are Facebook checkins deprecated in favor of Open Graph? [closed]

Does anyone know whether the checkins graph object and its API are still the right way to think about, post, and retrieve checkins on Facebook? Are they moving to deprecate them in favor of geocoded ...
1
vote
1answer
1k views

Get # People that “Were Here” from a facebook page with FQL

I am trying to get some statistics for a facebook page using publicly available information - particularly how many people have ever been tagged at that place. I used FQL to retrieve the # of ...
0
votes
1answer
174 views

Facebook checkin form and button on mobile website

Is it possible to put a single field form on a mobile website with a submit button that would 'checkin' the user on Facebook and post what was entered into that field with the checkin?
0
votes
1answer
233 views

Simple Javascript Checkins

Can anyone show me a quick example of posting a checkin with javascript using FB.api('/me/checkins', 'post', etc?? Mine doesn't seem to work. Also does anyone know if this will take a date variable?
1
vote
1answer
137 views

Getting place recommendations and list of people who like a place using FQL / Graph API

Does anyone know if its possible to get a list of place recommendations and list of people who like a place (not only a number, but ids or names)
1
vote
1answer
180 views

Any way to suggest places to Facebook

I am developing an android application which has the simple call to check-in feature which will help the students of a university collaborate and see what their friends like/visit. I am trying to ...
0
votes
1answer
390 views

Graph Checkin method returns empty data

I'm trying to get to work the Checkin method, but currently I only get empty data: { "data": [ ]} Whether using this ...
0
votes
1answer
195 views

Anyway for admin to get ALL checkin info?

looks like every checkin call on the api only relates to a user's checkins or their friends. Is there no way for a page administrator to see all of their checkins with times and names? I know you ...
0
votes
1answer
451 views

Webpage with open graph metadata as a valid place for FB Check-ins

I'm trying to publish check-ins to places that aren't available on Facebook. I created a sample web page for a sample place and added the open graph metadata, but Facebook doesn't recognize my ...