Is there any paid or free event API? I would like to get event data based on location and date ranges parameters. Do you know anything that provides that functionality?
You can try Facebook Graph API.
Related
I'm working on a SaaS service. There are certain events that happen on the backend which I'd like to use as conversions for Facebook Ads. I figured out there's a way to send a custom event using the Facebook js-pixel. I can't use JS for the events I'd like to track. Maybe it's possible to use something like a good old-fashioned cURL?
Thanks!
Yes, there is the
Offline Conversions API
With Facebook's Offline Conversions API you can send your offline conversion events using an offline event API. You can see how many of your customers viewed or clicked on Facebook ads before converting offline.
https://developers.facebook.com/docs/marketing-apis/offline-conversions/v2.8
Is there a way to get the user's relationship anniversary, like wedding anniversary, using Facebook Graph API 2.3?
Thanks!
Life event cannot be accessed by graph api. Here is a doc for it https://developers.facebook.com/docs/graph-api/reference/life-event, but you cannot get authority to fetch any event for user.
Is it possible to create a Facebook Life Event via Open Graph API? Is it?
No, it's not possible. If it's not in roadmap and it's not in the documentation (documentation should reflect the latest changes to the API now, it's dynamically updated), then it's not available.
I want to integrate spotify data to my application which is posted in Facebook.
I am tried that using Graph API Explorer by https://developers.facebook.com/tools/explorer?method=GET&path=me%2Fmusic.listens.
In order to get the brief information about individual music it takes too long time..
So can anyone help to continue this functionality in FQL..
Regards
Rajapandi
AFAIK you can't do this using FQL.
You need to use the Graph API and have the user_actions.music and friends_actions.music permissions.
Then you can do - graph.facebook.com/USER_ID/music.listens?access_token=
Can any one help me on that how can i get Admin of events from facebook using graph api, i also search field of event which facebook provided to us but couldn't get admin field, kindly help me on that thanks in advance
You can try this:
https://graph.facebook.com/{event_id}/admins
Using FQL, query the event table (https://developers.facebook.com/docs/reference/fql/event/) and read the creator (id of user who created the event). More than likely they should be one of the admins for the event.