Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Types, and type systems, are used to enforce levels of abstraction in programs.
1
vote
0answers
8 views
Change open graph type
I specify "video" as the og type at the root of my blog, then realize my mistake and try to change it to "blog". Yet, I read that this is not possible at any cost because the blog has been liked or ...
1
vote
1answer
22 views
Is there any way to change og type from article to website without 301 redirect?
Is there any way to change og type from article to website without 301 redirect?
I need to change it on main page of my site.
Previously my site had og type 'article' I change it to 'website' but ...
0
votes
0answers
76 views
Is it possible to change the og:type meta tag?
So I put a like button on my blog and filled in the open graph meta tags for optimal promotion. When I copied the codes, the og:type tag was already set as "blog", so I figured the tag existed and ...
2
votes
1answer
416 views
{“error”:{“message”:“(#324) Requires upload file”,“type”:“OAuthException”,“code”:324}}
private void postToWall(String msg) {
Bundle parameters = new Bundle();
// parameters.putString("method", "stream.publish");
JSONObject attachment = new JSONObject();
...
-2
votes
1answer
237 views
What is the correct OG type for a regular ol' web page? [closed]
I've tried asking this question multiple times, and I will keep asking until somebody answers me.
Facebook says do not use "website" except for the root home page because it is supposed to be used to ...
0
votes
1answer
69 views
FB.api() object type as a variable
I have written the code below:
function processLWO(lwo,type)
{
FB.api('me/'+lwo,
'post',
{shoe :'<%=sItemURL%>',object :'<%=sItemURL%>'},
function ...
1
vote
3answers
551 views
More Than One OG URL Specified
I've been looking EVERYWHERE to try and fix this error. SMH
"More Than One OG URL Specified: Object at URL 'http://www.sistahhollywood.com' of type 'article' is invalid because it specifies multiple ...
0
votes
1answer
43 views
Is FQL giving wrong typage?
I am starting with FQL, and I am having some issues with columns' type being not as expected.
For example, docs of table friend says that uid2 is an int, but I receive strings when I lookup this ...
0
votes
0answers
100 views
Facebook open graph error for og:type
Hi I am developing ROR application in which I want to integrate facebook open graph. I successfully create costume action and also set up required environment for integration. Now problem is that when ...
-1
votes
1answer
261 views
Cannot fetch large type picture for multiple Facebook object ids Graph API
I just can't figure it out, i am using Facebook graph API to fetch data, lets say i have a multiple Facebook objects and i want their picture in type=large...
I saw some posts like this one
How do I ...
0
votes
0answers
87 views
FQL getting only posts by administrators of a group / page
I'm trying to pull posts only from page admins into an application - at the moment I'm using FQL to get the required fields from the 'stream' object.
Looking at the documentation what I need to do ...
2
votes
2answers
827 views
“Object is of Type Website” error when trying to publish custom action
When I try to publish a custom action I am get an error (below) claiming that the URL representing my object is of type website. As you can see from my object html I have included a. og:type ...
0
votes
1answer
99 views
Search Graph API type=page empty result
https://graph.facebook.com/search?q=platform&type=page&access_token=AAAAAAITEghMBAHNliisCo3f5nCVjRPaEUE6uZCpsbzOZB9LjXXbHTR5puUMbs6ObW91epZCAZCnzlqD1jXvd6K7EqiG71D1s7IojKY5eEgZDZD
All ...
1
vote
1answer
73 views
How can you trace what a user read on your blog through the Facebook API?
I have a blog. I like people to login to my website and mark which articles they have read, completely through the Facebook API. Similar in the way how you can currently like (and unlike) a post on ...
0
votes
1answer
290 views
Type of application for Symbian native app
I'm creating an application that will post to the users' wall. It is a Symbian native app.
I know it will need to use a WebView for the OAuth2 process, but the app itself is not a web app.
What ...
0
votes
3answers
2k views
What datatype to use for Facebook user id in Rails and PostgreSQL
I have a PostgreSQL database for a Rails application.
I want to store the Facebook user id so I thought I could use integer but its not big enough so I chose float.
However now Rails adds .0 to the ...
1
vote
0answers
62 views
Small business owner page [closed]
I have a small tattoo shop in coralville, ia. i had previously created a page for this business and connected it with my personal facebook page. heres whats up though, i would like to have customers, ...
1
vote
1answer
690 views
Can only use og:type “article” in like button
I am creating a like button for my website, but in Firefox the comment box pops up and immediately disappears when clicked. The only time it works is if I set og:type=article.
Site has never had a ...
0
votes
1answer
103 views
Get data from businessaccount
When I use the c# sdk and quering my personal "normal" account everything works fine.
But when I use the same settings/permissions with a BusinessAccount I always get null as result.
For example if I ...
13
votes
7answers
7k views
user_id big_int, int or string?
Facebook's user id's go up to 2^32 .. which by my count it 4294967296.
mySQL's unsigned int's range is 0 to 4294967295 (which is 1 short - or my math is wrong)
and its unsigned big int's range is 0 ...