facebook - Is it Possible to FQL list of friends who own specific phone ?(query from wallpost source) -
facebook - Is it Possible to FQL list of friends who own specific phone ?(query from wallpost source) -
i've notice each wall post mobile phone have like "44 minutes ago via blackberry" "3 hours ago via iphone" , if click on word "blackberry" or "iphone" it'll redirect to http://www.facebook.com/mobile/?v=6628568379 (for iphone) or http://www.facebook.com/mobile/?v=2254487659 (for blackberry)
is there anyway can fql user's friends specific phone(or access "v" value) using these source above ?
thanks.
there's no way query 'friends utilize device', via news feed can determine users
check out 'stream' fql table: https://developers.facebook.com/docs/reference/fql/stream/
with access_token read_stream permission 1 of users can go through posts in news feed , check app_id column see app used post story. surface devices users who've posted visible in app user's feed, it's start
as you've noted, mobile clients identifiable news feed, of are:
6628568379 = facebook iphone 2254487659 = facebook blackberry 41158896424 = htc sense 4620273157 = facebook hp webos 74769995908 = facebook android 135892916448833 = facebook windows phone 139682082719810 = facebook every phone (java client)a sample query seems give want is:
select actor_id, app_id stream source_id = me() limit 500
the reply looks like:
{ 0: { actor_id: <snip>, app_id: 74769995908, }, 1: { actor_id: <snip>, app_id: 6628568379, }, 2: { actor_id: <snip>, app_id: 6628568379, }, ...
from can see first (snipped) user uses android, , next 2 utilize iphone app
facebook phone facebook-fql
Comments
Post a Comment