Facebook's JavaScript SDK provides a rich set of client-side functionality for accessing Facebook's server-side API calls. It can collaborate with any SDK like PHP, C#, Java, android, ios, etc

learn more… | top users | synonyms (1)

0
votes
1answer
16 views

Facebook notifications - need permission or not?

Here is what I'm seeing in the docs: Apps can send notifications to any existing user that has authorized the app. No special or extended permission is required. Okay, sounds good. I'm using the JS ...
0
votes
0answers
5 views

Auth dialog redirecting to App Center

We have a Facebook canvas app called 5 Star Slots. We use the Javascript SDK FB.getLoginStatus to detect whether the user has installed the app, and if not we redirect via Javascript to the auth ...
0
votes
0answers
12 views

get user information from facebook conect with javascript

I'm trying to get user information from facebook without sucess, someone can show me how and where should I put it in my code? I already try using FB.getLoginStatus and some others that facebook ...
0
votes
0answers
16 views

Get facebook post of user

I know how to fetch user's facebook post if i had his token number but those post are simply in text form, how to show user's post in my website if the post contain some link, photo, or other than ...
0
votes
2answers
972 views

FB ui Allow to share on my wall, friends wall or send by message

I have a page tab and want to allow users to share some content in their wall, friends wall or by a private message to a friend. I'm currently using: function postToFeed() { // calling ...
0
votes
0answers
5 views

'FB uid' is available from fbAsyncInit - how do I make it available for my included .js file

Im currently successfully doing a Facebook login with the Javascript SDK. In this process I can get and print out my uid with the following code: // all the window.fbAsyncInit stuff up here ...
0
votes
0answers
12 views

Not Posting on friend's wall with simple feed method

I have almost wasted my whole day in searching why is it not posting on friends wall please help I do not get any errors but the post doesnt seem to be appearing on friends wall. i get a dialog box ...
2
votes
2answers
588 views

phonegap facebook plugin

I'm doing a project using phonegap 2.4 and the latest facebook plugin https://github.com/phonegap/phonegap-facebook-plugin my problem is with posting to the user wall feed, I'm able to authenticate ...
0
votes
0answers
14 views

FB.login popup is not centered and even on separate screen than the active browser window

When I use the FB.login function from the JavaScript SDK, popup shows up, but it is aligned all the way to the right and appears on the second monitor screen. This only happens if browser window is ...
1
vote
0answers
109 views

Can't resolve the second promise on Facebook JS with Angular

I'm developing an application with Facebook JS and AngularJS. First of all I login and then get the Friends and show them in a list. Everything is working fine with this code: var friendsController = ...
3
votes
1answer
171 views
+50

Facebook Auth Dialog: Developer warning concerning the use of “display” type “popup”

starting today we receive developer warnings in the auth dialog with the following message: You are using a display type of 'popup' in a large browser window or tab. For a better user experience, ...
0
votes
0answers
28 views

No Reload After Facebook Login on IE

I am using the Facebook PHP SDK and Facebook JS SDK to manage authentication in a web app. The flow should go like this: Click FB login button -> launch OAuth dialog -> enter account details into ...
2
votes
4answers
2k views

Facebook - Posting to a Group page

I am attempting to post on a group page using the FB JS API, basically the user selects the group they want to post onto, and it posts it to the wall. i am doing: FB.ui( { method: ...
0
votes
1answer
21 views

Facebook API get email address

I have to make a website to login with Facebook. Makes sense to be able to send them an email, but I can't get the email address from Facebook. I followed exactly the instructions from ...
0
votes
0answers
17 views

Log-in by fb in parse.com

i'm trying to implement the log-in by facebook in parse.com but happens this error: GET file://connect.facebook.net/en_US/all.js at line: .fjs.parentNode.insertBefore(js, fjs); Facebook request me a ...
0
votes
1answer
17 views

How long is the picture url from FB Open Graph User Object valid?

I have a Facebook application, I have included the Facebook Javascript SDK and it works quite good. I am asking the user for basic permissions, I want my application to query after the picture object ...
0
votes
0answers
3 views

Mobile Safari FB.login Oauth Redirect Error

I have a mobile web application that integrates with the Facebook Graph API. Basically, it uses the JS SDK to obtain details about the viewing user that it can then use to render user specific ...
0
votes
1answer
19 views

how to upload image with feed using FB.api method

we are using Fb API for post feed on facebook. my code is - if (response.authResponse) { var data = { name: ...
0
votes
1answer
11 views

Sharing facebook post using javascript sdk

I can share any link on facebook using this: FB.ui( { method: 'feed', name: 'TagBin', link: 'https://tagbin.in', picture: '', caption: 'tagbin-share', description: 'tagBin provide a simple, ...
2
votes
3answers
1k views

Custom Facebook login button text (HTML5 version) - FOUC

Using XFBML, it was possible to change the text of login button like this: <fb:login-button> Custom login text </fb:login-button> It is also possible similarly with the HTML5 ...
-1
votes
0answers
20 views

sharing content on to facebook without being domain specific

I am trying to create a button that will post an image and link to a visitors facebook wall. Much like the now depreciated sharer.php. My first attempt was with the "dialogs feed" here: ...
1
vote
3answers
180 views

How to get “scrollTop”-value of FB.Canvas.getPageInfo

so far i can alert the "scrollTop"-value of "FB.Canvas.getPageInfo": FB.Canvas.getPageInfo( function(info) { alert('scrollTop: ' + info.scrollTop); } ); Now I would like to ...
0
votes
0answers
18 views

July 2013 Breaking Changes and stream publishing attachments and actions

July 2013 Migration alert says that absolute urls must be used for the social plugins(like button, like box). We're also using the stream.publish dialog for publishing attachments and action links. ...
0
votes
0answers
5 views

if not enter to fb.canvas.getPageInfo

How can i detect if fb.canvas.getPageInfo is not called. I am trying to set position of a popup. before setting position left and right of the popup i am setting the display none of the popup and ...
0
votes
0answers
22 views

How to post an attached link to a facebook group?

How can i post my link attachment to a group feed on facebook with this? I think i've done it wrong. function post_to_group() { FB.api("/group_id/feed", 'post', { message: 'My Sample ...
0
votes
0answers
24 views

Facebook Login is not working fine?

I made an app in android which uses facebook login to get login to my app. My app was working perfectly fine few days back but now i am facing an issue, whenever I login into app, it asks me to 'add ...
0
votes
1answer
38 views

Posting a message to a friend's wall using the app access token

I am trying to get my app to post to a friend's wall. I tried using the FB.api method but I discovered that using that has been disabled. Then I tried using the FB.ui feed dialog but then I ...
0
votes
0answers
57 views

Facebook Permissions pop-up appears then disappears

Basically every time I try and get permissions from the user the little dialogue box appears and disappears almost instantly meaning I cant allow the extended permissions needed for my app. I'm not ...
0
votes
0answers
20 views

Facebook Button not working as expected

I've been trying to implement the fb like button on my app. I'm using js sdk along with xfbml. So basically, after creating an App, I've set up the necessary markeup in my body (I'm using twig along ...
0
votes
1answer
25 views

Dynamic Facebook Like URLs with Javascript- displaying but not posting

I have multiple blocks of content on my page that users can open and explore. Within these blocks is a Like button relevant to each block. Each Like button widget has a URL that is dynamically ...
0
votes
0answers
14 views

FB LIKE button - liking only show correct thumbnail + desscription after page reload

I currently have a "standard" FB LIKE button integrated on my site. My problem consist of the following: NOT WORKING: When visiting a page the first time and upon clicking the FB LIKE button, the ...
0
votes
1answer
5k views

FB.canvs.setAutoGrow() with https on fanpage tab

I've noticed that since this morning (maybe since yesterday night), the function FB.canvas.setAutoGrow didn't work anymore on a fanpage tab when i'm connected with https protocol. Is it a facebook ...
2
votes
1answer
154 views

Facebook Activity Privacy

I am using the FB Javascript SDK to create an activity, the activity is posting fine but the documentation for how to set the privacy of an activity doesn't really give me anything. I have followed ...
-2
votes
0answers
33 views

Integrating facebook with Google App Engine [closed]

I started learning Google App Engine recently and want to integrate it with Facebook. I know how to use Facebook JS SDK. But in my application, I need to store user data from Facebook in the database. ...
2
votes
4answers
122 views

Facebook login dialog doesn't close using javascript SDK

I've tried to do the facebook login using FB Javascript SDK. After login doesn't close the login window only in opera browser. How can i fix this problem? I've tried following source code: (on-line ...
0
votes
0answers
23 views

FB.ui does not fire callback in IE

Everything works fine in Chrome, but in IE the callback is never fired. I've searched for all related solutions here in stackoverflow, and I've tried them all, but none of them have worked. Anyone ...
2
votes
5answers
120 views

How to detect when DOM and frame are loaded in a Facebook app?

I'm writing a Facebook app, and I'm trying to find out how to detect when the iFrame DOM is ready, and when the iFrame has completely loaded. I do not believe that window.fbAsyncInit() is sufficient, ...
0
votes
1answer
228 views

Extract data from facebook graph api

From the following graph api url, $graphURL = "https://graph.facebook.com/me/news.reads&access_token=$access_token?" . //"callback=''&" . "date_format=U&" . "limit=5"; I get an array ...
2
votes
3answers
239 views

Unable to load full Facebook comment plugins inside an iOS UIWebView

I have a simple ViewController to load FB comments plugins inside a UIWebView @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; UIWebView * webView = [[UIWebView ...
0
votes
0answers
19 views

fb.event.subscribe doesn't work in chrome and IE

This code only works in firefox, doesn't work in chrome and IE: window.fbAsyncInit = function() { FB.init({ appId : 'APP_ID', // App ID channelUrl : 'channel url', // Channel ...
1
vote
2answers
437 views

Facebook like box not showing

I have included a Facebook Like box on a website i am creating and it only shows up when they are logged into facebook. When they have looged out the like box disappears not allowing anyone new to the ...
2
votes
2answers
125 views

How to get user information with Facebook PHP API

I use the Facebook API and I wish retrieve Facebook information of the connected user. I can retrieve the information in javascript, but I want to get the information to fill the PHP stored in my ...
0
votes
2answers
61 views

How can one limit Facebook's send dialog to only one recipient?

Hello experts, I have created a fb app for sending private message to user's friend's inbox.We want the users to be able to send their friends a message via our website, but only to one recipient ...
0
votes
0answers
26 views

fb post to wall function shows syntax error unexpected identifier? But the JS is valid?

Using the facebook javascript sdk - I have made this function to post information to the wall of the current facebook user. But I'm sure this is correct (obviously not) but cannot find the syntax ...
1
vote
1answer
50 views

Does the Facebook API allow for automated changes to old post visibility?

In other words, is there an API that would allow a Facebook user to change their posts (through a 3rd party app), which are older than a specified date, from being visible to the list "Friends" to ...
0
votes
0answers
14 views

Offering “Change user” functionality when requesting authorisation of Facebook app

Facebook app requesting the basic authorisation (public profile). If a user isn't logged into Facebook, it will ask them to first login. All good. If a user is logged in, it will bypass the login ...
0
votes
0answers
9 views

get number of objects of an app in facebook javascript sdk and get those objects from object browser

I am currently creating a facebook application using the javascript sdk. I use the open graph api's object browser to view the objects my application owns. How can i get all the objects from the ...
0
votes
0answers
8 views

how to add objects to facebook open graph object browser

I am currently creating a facebook canvas app using facebook javascript sdk but i can't seem to add app-owned objects, the closest answer i get is from this tutorial: ...
0
votes
1answer
28 views

Interact with facebook from flash

I have looked around for tutorial how to pass facebook info to flash. The only one thats been linked to the last past month was this. ...
1
vote
2answers
34 views

FB.login with PHP check

my application works like this: User clicks on button and it call "FB.login" After login is page reloaded by "window.location.reload;" I checked in PHP, if user logged in, but it writes that NO I ...

1 2 3 4 5 46