facebook-events

Facebook Graph C# SDK Ver 6.0: Unable to create event on App's Page

北战南征 提交于 2019-12-25 19:46:19
问题 I am converting a fully working C# Web Application from REST API to GRAPH API, using FB C# SDK 6.0. I have been able to obtain access token and post event to my "personal" Facebook page without problem. But I need to post the event to the Page associated with my Web Application (for which I am the Admin). I am totally at a loss as how to obtain the required access token, and construct the "fbClient.Post" call to create the event. I could find no relevant example with the SDK. And I have spent

FQL event pic_cover returns null

懵懂的女人 提交于 2019-12-22 08:52:56
问题 I am trying to fetch the cover picture for a public event on Facebook, but the pic_cover field returns null. Here is the event: https://www.facebook.com/events/545127275518406/ Here is my FQL query: SELECT pic_cover FROM event WHERE eid=545127275518406 That query returns: { "data": [ { "pic_cover": null } ] } Another public event (https://www.facebook.com/events/133752506800219/) using the same query (with substituted eid ) returns: { "data": [ { "pic_cover": { "cover_id": 431180503630072,

Facebook graph api me/events returns blank

浪子不回头ぞ 提交于 2019-12-20 05:13:11
问题 I'm using the Graph API Explorer and have given permissions for user_posts , user_likes & user_events . me/posts and me/likes return non-empty data, but me/events returns this: { "data": [ ] } I do have ongoing and upcoming events (interested) and they are visible on my Facebook profile. Any idea what's going wrong? Or is it a Facebook bug? 回答1: https://developers.facebook.com/blog/post/2018/04/04/facebook-api-platform-product-changes Testing of our more robust process starts today and the

Possible Bug: Facebook Events API eid table values being returned with decimal points raw

旧时模样 提交于 2019-12-12 05:39:34
问题 I built a custom wordpress widget months ago that just pulls a users facebook events, styles and shows it in the sidebar. The events are still showing up fine - except that the links now go to an facebook error page. So I checked the echo'd url and this is what I got : https://www.facebook.com/events/4.3772330960996E+14 Obviously the url, ending at events/ is hard-coded and the number that follows is an echo is a for loop. Which has been working clean for about 6mo. At first I thought maybe

Facebook Graph API does not return Page Events

烂漫一生 提交于 2019-12-11 17:11:30
问题 This looks a kind of duplicate question but actually NOT. So the problem is https://www.facebook.com/julytalk/ has events, for sure. But when I tried on Facebook Group API toolkit, it returns empty array. https://developers.facebook.com/tools/explorer/145634995501895?method=GET&path=204859706228731%2Fevents&version=v2.12 Why is this happening? I could not find any Facebook API endpoint modification notice, at all. It was working okay before. Please help me. 回答1: https://developers.facebook

Facebook Graph API event-id/comments?since=2014-02-01&until=2014-02-10 , Date filter has no effect

折月煮酒 提交于 2019-12-11 02:25:51
问题 I am trying to bring comments made on a particular event by targeting this URL: https://graph.facebook.com/1466384840257158/comments I am passing the user_access_token I have two comments at present on this event made on the same day(2014-03-29) Now I try to pass a date which should bring an empty data result/object like this: https://graph.facebook.com/1466384840257158/comments?since=2011-01-01&until=2014-01-10 This request has no effect, it still shows me the two comment made on the 29th I

FQL query for finding public event

柔情痞子 提交于 2019-12-08 00:47:50
问题 I would like to execute an FQL query for retrieving all the public events in a specific area (using longitude,latitude and maximum distance or simply location name). Do you know if it's possible? Apparently, somebody is able to do it, somehow: http://elmcity.info/fb_events?location=tokyo 回答1: It is possible indeed to receive events using location based "search" To do so you'll need the longitude and latitude coordinates of the location you want to search and a access_token with user_events

Invite user(s) to event with notification - works manually but not with Graph API

对着背影说爱祢 提交于 2019-12-06 11:37:49
问题 I'm currently experiencing some problems with the Graph API when inviting users to an event. The users are being invited successfully, but they do not receive a notification of the invite. However, if I manually invite a user from the event page they do get a notification. Is this a known bug? Or is there a known workaround to get it working? All help appreciated. 回答1: It's not a bug - event invites sent via the API don't result in an on-site notification. They do increment the counter on the

FQL query for finding public event

痴心易碎 提交于 2019-12-06 05:15:13
I would like to execute an FQL query for retrieving all the public events in a specific area (using longitude,latitude and maximum distance or simply location name). Do you know if it's possible? Apparently, somebody is able to do it, somehow: http://elmcity.info/fb_events?location=tokyo It is possible indeed to receive events using location based "search" To do so you'll need the longitude and latitude coordinates of the location you want to search and a access_token with user_events permission (i think you could also use the public search) Here's an FQL example how can you get all the events

Facebook C# SDK, Create Event With Picture

落爺英雄遲暮 提交于 2019-12-02 21:28:20
问题 i want to create a event but i just no idea how to change the event picture. I knew this is very old question but still i can't find any solution yet and i'm giving up soon... please at least tell me is this bugs from Facebook or anything else? Here is my code : Facebook.FacebookClient fb = new Facebook.FacebookClient(accessToken); Dictionary<string, object> ev = new Dictionary<string, object>(); ev.Add("name", model.name); ev.Add("start_time", model.start_time); ev.Add("end_time", model.end