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.

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)

-1
votes
0answers
10 views

How to Share image on Facebook in sencha touch 2

I want to share images on facebook from my sencha touch app. image is getting posted when I run on web but when I create apk and run it on device or mobile it gives callback error and images are not ...
0
votes
0answers
17 views

How to use jQuery on Chrome in Facebook environment?

I have a conflict between jQuery and Google Chrome in a Facebook Application creating problem in sliding the image. Which is working fine in Firefox and other browser. The link is : ...
-4
votes
1answer
21 views

Facebook App Token - does it ever expiry? [closed]

Facebook App Token - Do App Token ever expiry? Do App Token ever change? 1 Facebook app will only have 1 App Token, or can 1 Facebook App have multiple App Token?
0
votes
1answer
14 views

FB.api is always undefined?

I'm trying really hard to learn how to do this but I keep running into problems. FB.ui works for posting but every time I use FB.api it comes up as undefined and I get a random picture. What am I ...
0
votes
0answers
14 views

Facebook Social Plugins / Comments in IOS Application

I have done a fair amount of searching on this topic the last few weeks, and tried multiple answers I've found here that either don't work with the new IOS SDK or don't apply. So i hope this is not ...
-5
votes
1answer
27 views

Does posting on a user's wall require their permission? [closed]

I am integrating Facebook functionality into my application. I am developing a feature to post on any user's wall and was wondering whether my application requires permission from the user's whose ...
0
votes
0answers
8 views

how to access uid + accesstoken outside of FB.Event.subscribe?

Im sucessfully run FB.Event.subscribe and can output the uid and accesstoken from within that function - however im wondering how i'd go about accessing uid and accesstoken from basically anywhere? ...
0
votes
0answers
9 views

facebook doesn't make notifications when making invite + invite to different url

I have a website and I wish to make "invite friends" button for this website. Therefore I created facebook app and in the "Select how your app integrates with Facebook" / "Website with Facebook Login" ...
0
votes
0answers
15 views

fb.ui feed 500 internal server error

Hi everyone I have a btnfb which if you click the feed dialog appears and share on facebook. But I having error on fb.ui { link: } giving me error 500 internal server error. if link is ...
0
votes
1answer
21 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
6 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
2answers
21 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 ...
-2
votes
1answer
22 views

Get facebook post of user [closed]

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
0answers
6 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
1answer
14 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 ...
0
votes
0answers
17 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 ...
0
votes
0answers
36 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 ...
0
votes
1answer
27 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
5 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
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, ...
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: ...
-1
votes
0answers
23 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: ...
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
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
23 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
1answer
42 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
67 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
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
0answers
24 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
30 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
18 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 ...
-2
votes
0answers
37 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. ...
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 ...
0
votes
0answers
23 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 ...
0
votes
1answer
31 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 ...
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 ...
2
votes
2answers
134 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
0answers
11 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: ...
1
vote
2answers
36 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 ...
0
votes
0answers
32 views

Facebook JavaScript application was working, now suddenly “Given URL is not permitted by the application configuration”

I have a bit of a strange problem... I created an application that has users log in with Facebook, so I set things up in facebook developers. In particular, I set my domain under AppDomains and ...
0
votes
1answer
47 views

Facebook Javascript SDK: Publish actions with custom Open Graph objects

I'm working on my Cordova application to get it more viral. Therefore I want to include Facebook and the Open Graph API to publish in the news stream of playing users, when they archive new things in ...
0
votes
0answers
20 views

facebook auto feed does not share image?

i am auto sharing feeds on my wall in my app, it is working absolutely fine, but when i attach image and link with it, i know image does not appear on localhost, but atleast there comes a success ...
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
1answer
52 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 ...
1
vote
0answers
49 views

Facebook Login using Javascript SDK does not give extended access token

So, Facebook's documentation regarding access tokens says: Apps using the Facebook SDKs for Javascript, Android and iOS, desktop apps or apps using the server-side login flow automatically ...
5
votes
1answer
214 views

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
51 views

how to post to page wall as admin user not as page

I know how to post to page wall/comment/like by graph api.As a post sample i use in this way - FB.login(function(response) { if (response.status=='connected') { if ...

1 2 3 4 5 47