facebook-opengraph

How can I extend FB's built-in open graph action type, watch?

那年仲夏 提交于 2019-12-14 03:17:16
问题 I want to use open graph to "watch real time sports matches." Built-in watch action-type seems to support only TV-show, movie, and video and doesn't support game match. Could anyone tell me how to extend built-in watch action-type? And if possible, please show me how to extend built-in object-types? Built-in game match object type requires sores and players. But you can not know the box scores untile the game ending, actually. 回答1: Open Graph doesn't support extending actions today -- instead

Android Facebook SDK - action.setPlace Error in Custom Stories in Andorid(Feed Dialog Method)

依然范特西╮ 提交于 2019-12-14 03:05:15
问题 I am trying to post a FB Custom story in Android using Open Graph(Share Dialog Method). The code was working very well and posted successfully, until I had added action.setPlace(). Now the Share dialog is appearing correctly. But when I click the 'POST' button, a wierd error message comes as follows "We are Sorry, this post is no longer available. It may have been removed" And in onActivityResult(), I get the following exception "com.facebook.FacebookException: Error publishing message" Here

Rails koala “error unsupported get request” after long task - calling FB graph API

本秂侑毒 提交于 2019-12-14 02:37:59
问题 After a long task (14s and can be more with more than 600 call to Facebook) my app returns a 500 internal server error with the following description: Koala::Facebook::APIError (GraphMethodException: Unsupported get request.) What I do is something like this: @FBGraph = Koala::Facebook::API.new tud = MyUsers.all tud.each do |user| graph = @FBGraph.get_object(user.fb_user_id) picture = @FBGraph.get_picture(user.fb_user_id) thisTud = MyUsers.find(user.id) thisTud.name = graph["name"] thisTud

open graph debugger tool errors inferred property

这一生的挚爱 提交于 2019-12-14 02:33:14
问题 the past few days I've been working to get a facebook comment box installed on my blog that I've set up with open graph tags so that my blog can be liked as a facebook page. From what I can see on the page, all seems to be functioning normally, but when I run my blog address through the debugger, I get the following errors. Here is the link to my site: www.mommysnark.com And here are the errors that the debugging tool gives me: A like button warning that should be fixed: og:title is missing.

Facebook Open Graph Story Custom Actions Keep Getting Rejected - Advice Please?

孤人 提交于 2019-12-14 02:18:42
问题 Right, I know this is a question that has been asked over and over and over, but I have been researching, and reading Open Graph docs, and I am at a loss now. This is the 3rd time my app has been rejected, sigh. Here's the low down: We have a site that has an optional quizz that the user can take, should they wish to. It's fun and quirky, and arrives at a personality type as the end result. As part of a competition element for a certain campaign, the user can share this story and stand a

Share custom stories explicitly using share dialog

吃可爱长大的小学妹 提交于 2019-12-14 01:43:42
问题 I'm using the Open Share Dialog from Facebook SDK for iOS in my iPhone App to share a custom story. I created open graph action and object which is already successfully approved by Facebook review team and live. But if a user shares a story using my App, it's not shown on the news feed of his friends. So I googled a lot and looked here in stackoverflow and everyone writes to set the ExplicitlyShared flag to true. But this is not working for me using the share dialog. After setting this flag

How to post through Facebook Open Graph for game

喜欢而已 提交于 2019-12-13 23:44:12
问题 I am developing some quiz app, and want to post player's achievement on facebook. Since I want to post the image for the achievement and Link Share of facebook doesn't support add image any more, I decided to use Open Graph. I succeeded to post with example source for the object type of "fitness.course", but still have troubles with the object type of "game.achievement". Share Dialog shows up, and seems OK until I click post button. But, after clicking post button, I cannot find the post on

How to obtain Full Size Profile Picture of facebook

旧时模样 提交于 2019-12-13 19:14:59
问题 How to obtain a full size profile picture from Facebook ? http://graph.facebook.com/{ID}/picture?type=large is way to small. I want a bigger size ? Is that possible ? I need a way without FBML because that is soon to end 回答1: You can specify width and/or height and Facebook will return an image less than or equal to the given size. http://graph.facebook.com/{ID}/picture?width={size_in_pixels}&redirect=false 回答2: you have to pass another variable "redirect=true" in the url. That means, your

Webpage og:image are cropped in facebook

岁酱吖の 提交于 2019-12-13 18:17:01
问题 I have og:image on my web page and image size 1200px by 630px. It gets cropped at on Facebook, what I miss!? CODE <meta property="og:title" content="Title" /> <meta property="og:url" content="http://www.url.com/" /> <meta property="og:type" content="website" /> <meta property="og:image" content="http://www.url.jpg" /> <meta property="og:description" content="description" /> 回答1: I had this same problem. You have probably edited the image several times and saved it with the same filename. The

When using the “like” social plugin, can I get the like message to display in the same way as the object preview in the Open Graph dashboard?

孤者浪人 提交于 2019-12-13 18:10:38
问题 I have a music app that I developed using HTML5's canvas. As different songs are selected, I have jquery that dynamically updates the URL in the browser to point to the correct song. I also have jquery that updates fb:like element. By using the debugging tool, I'm able to cache the pages (since my server is able to return correct meta-data for each URL provided). When I do this and like something on my website, I end up with a message saying "Sami liked a page." with some info underneath.