Tagged Questions
0
votes
0answers
8 views
Facebook FQL query fails depending on information asked
I want to retrieve the text of a specific comment using Facebook fql in JavaScript.
function getInfo(commentID){
FB.api("/fql?q=SELECT text FROM comment WHERE id IN ("+commentID+")", ...
0
votes
1answer
14 views
Facebook get username without requesting authentication
I have tried countless examples from all around.. Is there any real way to get the current users name in a fan page app using the JavaScript sdk without a pop up requesting authentication?
Here is my ...
0
votes
1answer
18 views
Get the facebook user id after like button press
I am adding the like button to a web page and I want to get the Facebook id of those who click it.
I know there are some events I can capture with the edge.create present in the Javascript SDK but ...
1
vote
1answer
34 views
Facebook Graph API returns object with missing data
I'm currently trying to get the total number of "likes" from a post. If I query the post via the Graph API Exporer, the data is there under likes.data.count. From my javascript application, the ...
0
votes
1answer
77 views
Facebook user access token expired at unix time
I have a joomla module which shows facebook group/page wall feeds by using Graph Api.For this Graph Api, call is made with a access token created by my facebook application.I generate this token by ...
-1
votes
0answers
16 views
how to get values from facebook json object [closed]
Hi, I want to retrieve values from signed_request object FOR facebook registration page.
Below is my registration page.
<html> <head> <meta http-equiv="Content-Type" ...
0
votes
1answer
22 views
Remove facebook app scrollbars
I've tried several things but none seems to work.
this is my code:
window.fbAsyncInit = function() {
FB.init({
appId : '582678658430669',
});
FB.Canvas.setAutoGrow();
}
i also tried this:
...
0
votes
1answer
13 views
Facebook Callback not being triggered
I am trying to have a Facebook "like" trigger a callback, but it seems to either not work at all or work sporadically. Here is my code:
LIKE BUTTON HTML
<div id="fb-root"></div>
...
0
votes
0answers
35 views
Removing Facebook's “sign up” text (bad UX) from Like Button on my site? [closed]
I'd like to retain the faces and count on my Facebook like button but prevent the "Sign Up" link text from appearing, as this obviously confuses visitors who think they're signing up to my site but ...
0
votes
0answers
8 views
Unchecking QuestionOption preference
I'm integrating Facebook Questions in my web site. Actually I can read questions, via GET requests, and answer one or more options, via POST requests.
What bothers me is that I'm unable to find a way ...
2
votes
1answer
38 views
How can i check if the person liked facebook page or not in social plugins of facebook?
I am Using the facebook social plugins of likebox get it from here.
Here how can i check if the facebook user is liked or not. I using iframe of facebook from social plugin. I tried to search in ...
0
votes
1answer
91 views
Facebook and Cross domain messaging clarification?
I wanted to investigate how the facebook login transfer data to the main page ( mypage) - despite the cross domain boundary limitation.
And so I created a new page with the FB js sdk code :
...
0
votes
1answer
14 views
Can I relabel the person.noun for Profile object type in Facebook Open Graph?
I have created a Story using Open Graph and the object I want to use is called Service, which is really just a Profile but I want the text in the post to say 'service' rather than 'person' (which it ...
0
votes
0answers
7 views
Reparse / Init-ing Social Widgets Later in the DOM
I am developing a JS lightbox that opens a lightbox with facebook comments, tweeter tweet button and google plus one.
The problem is, as the nature of lightboxes, this content will be loaded way ...
0
votes
0answers
12 views
Avoid captcha using facebook feed
Using the FB.Init we initiate a feed dialog as shown below.
The question is: Is there any way to avoid the captcha, to ease the user experience ?
FB.ui(
{
method: 'feed',
redirect_uri: 'url',
name: ...