facebook-opengraph

Facebook publish HTTP Error 400 : bad request

蓝咒 提交于 2019-12-12 03:42:13
问题 Hey I am trying to publish a score to Facebook through python's urllib2 library. import urllib2,urllib url = "https://graph.facebook.com/USER_ID/scores" data = {} data['score']=SCORE data['access_token']='APP_ACCESS_TOKEN' data_encode = urllib.urlencode(data) request = urllib2.Request(url, data_encode) response = urllib2.urlopen(request) responseAsString = response.read() I am getting this error: response = urllib2.urlopen(request) File "/System/Library/Frameworks/Python.framework/Versions/2

App does not post to user's timeline

回眸只為那壹抹淺笑 提交于 2019-12-12 03:36:05
问题 I have developed an app using Facebook Graph API and Open Graph. I want my app to display custom data, when the user performs an action on my website. I read about open graph and added a open graph tags, etc. I have used the following code $post_url = "https://graph.facebook.com/me/myappnamespace:mycustomaction?method=post". "&mycustomobject=mywebpage". "&access_token=".$_SESSION['access_token']; Right now, whenever a user uses this app, it appears in his activity. But, it is not shared on

Facebook OG debug Curl Error : WRITE_ERROR

对着背影说爱祢 提交于 2019-12-12 03:17:27
问题 I'm at a complete loss here: The Facebook debugger won't scrape this website: http://kalect.com.au/. Fetch new scrape information returns 2 errors https://developers.facebook.com/tools/debug/ The Open Graph tags are showing when you view code in a browser and other OG testers can see the tags. Its only Facebook that can't see them/errors. <meta property="og:image" content="http://kalect.com.au/images/website/facebook-like.jpg" /> <meta property="og:type" content="website" /> <meta property=

Facebook automatically created a fan page which I can't edit

大憨熊 提交于 2019-12-12 00:18:37
问题 We launched a website which uses the Facebook open graph and like buttons to share content on Facebook etc. One of the open graph tags includes information about the Facebook IDs of the website owners ( <meta property="fb:admins" content="..."/> ), so these were included. I am one of the admins, and when I liked the web page myself Facebook automatically created a fan page. This is OK, and we are going to keep the fan page, but I can't seem to edit it. Is there any way to edit a Facebook page

Facebook Application Notifier in Newsfeed

一笑奈何 提交于 2019-12-11 18:18:29
问题 Does anyone know how these kind of functionality can be implemented? How can we get PlayNow kind of link ( I want to add my own custom link at that place) How to get user images on this kind of aggregation. 回答1: As far as I can tell, this is a custom implementation from Facebook that you cannot control. Facebook provides custom aggregation on the newsfeed for certain popular actions, such as playing games, reading news or watching videos. As you can see in the aggregation you have posted,

How to access admin page - website like button

非 Y 不嫁゛ 提交于 2019-12-11 18:17:12
问题 I am in the process of adding Like buttons to all of the product pages on a website. I am using all of the proper open graph tags and an app_id and everything seems to be working fine. I will be using a version of the button that does not give you the Admin or Insights links to choose from. I am wondering if there is an easy way to access those pages without the links? Even though I am listed as an admin of the App, I am not automatically listed as an admin of each of the product pages as

Is it possible to publish action from a Facebook Page?

。_饼干妹妹 提交于 2019-12-11 18:06:20
问题 I've been using the great facebook OpenGraph and the publish_actions permission. My users can publish actions through our website, and it's directly connected to there Facebook-Timeline. Great integration, very simple to be developped : thanks a lot for your work! But, I have one more question : Is it possible to use publish_actions not from a specific user but directly from a Facebook Page? (as described here for a user: https://developers.facebook.com/docs/opengraph/actions/#create) For

open graph tags not being read by Facebook but are in page source

蹲街弑〆低调 提交于 2019-12-11 17:48:55
问题 I'm having a problem getting Facebook to recognize my open graph tags. In looking at the source of the page I see the open graph tags properly but when I go to Facebook's open graph tag debugger, it is not picking up the open graph tags. Here's what the source looks like: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="https://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#"> <head> <meta charset="UTF-8" /> <title>Run When You - Arte House on Joss & Main</title>

Why can't Open Graph checkers detect Open Graph data?

家住魔仙堡 提交于 2019-12-11 17:03:56
问题 My page, after adding an SSL certificate (Let's Encrypt), cannot have preview fetched by Facebook or Twitter when sharing the link. I have followed The Open Graph protocol and include the following open graph tags: <meta property="og:type" content="article" /> <meta property="og:title" content="Corner Timer: gently make you feel guilty on time-wasting apps" /> <meta property="og:url" content="https://lyminhnhat.com/resources/productivity/corner-timer-gently-make-you-feel-guilty-on-time

Facebook OpenGraph API action when posting creates 2 entries in activity log instead of 1

陌路散爱 提交于 2019-12-11 14:58:30
问题 In my facebook application I have my custom object 'Level' and my custom action 'Complete'. Also I created a story with that action and object for my application. When user completes a level I create an instance of Level, take ID of that instance from response and post Complete action with that ID. But in Activity Log there is 2 entries. The first seems right: "User completed SampleLevel in MyFBApp", but there is also second entry: " User posted SampleLevel in MyFBApp". And I can't understand