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.

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
9 views

Navigate in timeline to a specific year/month AND post (facebookID) with a single url

i noticed that with an url format : facebook.com//timeline/2013/4 we move to the end of the specified month of the year. Now i need to use an url to navigate a user in my timeline to a specific post ...
1
vote
0answers
27 views

How to publish custom action to Facebook from website?

I successfully published a story from website via Feed and also another approach via sharer.php, but I want something different. Downside of what I have now is that a picture is small and on the left ...
0
votes
0answers
13 views

Requests Dialog wrong url

I'm using a Requests Dialog in my facebook application, I use this documentation http://developers.facebook.com/docs/reference/dialogs/requests/ All work fine, the dialog is shown, the request is ...
-2
votes
1answer
33 views

Jquery form post get me out of facebook canvas? [closed]

i am developing a facebook app, i have two submit button on a page, I am having a little problem in jquery form post, when i post a form through jquery it get me out of facebook canvas, it works fine ...
0
votes
1answer
51 views

Custom image in facebook send dialog?

I am trying to send a facebook private message via facebook send dialog in my facebook app, i have a problem while setting the custom image each time user clicks on it, i am sending the parameters as ...
0
votes
1answer
41 views

FB.UI callback with scopes on Backbone

var obj={ method: 'feed', name: 'Je viens de créer son premier domaine : "' + this.model.attributes.name + '"', caption: 'Entrez dans l\'univers du vin avec Vinoga', ...
1
vote
0answers
112 views

fb.ui apprequests doesn't work on Opera Mobile

I've got the following function to trigger the apprequests: function fbInvite() { FB.getLoginStatus(function(response){ FB.ui({method: 'apprequests', message: 'MESSAGE', data: ...
0
votes
0answers
18 views

Payments Credits Method Bank Transfer [closed]

I,m testing bank transfer method payment, and the reference number have 12 digits and the bank use only 10 digits, wich numbers shall i used to send to user? example reference number:231364937939 ...
1
vote
1answer
87 views

How to control the user prompt in a Facebook Feed dialog

Is there a way to control the user prompt (defaults to "Say something about this...") in a facebook feed dialog using the Javascript SDK? I don't want to prefill the content for the user, I just ...
3
votes
0answers
72 views

automatically minimized chat tabs

We must call fu.init in hideFlashCallback to pause our game. When the user is in the another page to open chat tabs to our game, the game will pause automatically. Is there a method like FB API or ...
0
votes
0answers
420 views

Facebook login FB.ui, access token is empty

I'm trying to authenticate users in my facebook app. I'm using the following code: window.fbAsyncInit = function () { FB.Event.subscribe('auth.statusChange', fbIsReady); FB.init({ ...
0
votes
1answer
2k views

Disable Facebook Feed Dialog's redirect functionality after Send/Cancel buttons are clicked

Here is how I implement Facebook Feed Dialog to my page: HTML tag: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#" xmlns:og="http://opengraphprotocol.org/schema/"> ...
0
votes
0answers
215 views

How do I display a FaceBook Fanpage's photo album in a lightbox with LIKE/COMMENT functionality from within a Page Tab?

This may seem crazy, but here's the situation I have to solve: I have a Fan Page with albums, photos, videos, events. I have a Page Tab for that Fan Page, which pulls all the photos, videos, etc. ...
-2
votes
5answers
1k views

Facebook send dialog doesn't work for any urls except google

I'm trying to use facebook's javascript SDK to let users send a link to another user, i.e using FB.ui(data, callback). console.log( data ) gives this output: link ...
0
votes
1answer
136 views

facebook ui send 500 error

When I call a facebook ui send dialog and share a url linking to my fb app (which requires fb login as age restricted) I get a 500 application error. I have read a few SO posts about the issue and ...
0
votes
1answer
358 views

Facebook Js FB.ui how can I change the message parameter?

var obj = { method: 'feed', link: mylinkt, picture: 'http://fbrell.com/f8.jpg', name: 'Poonkt.us - My new Quote!', message: 'Test?', //<<--cant I access this? description: desc }; ...
0
votes
1answer
124 views

Share dialog opens then closes

My app opens a share dialog when the user submits a form. The dialog is called on document ready (jQuery) when the page refreshes after the submit. The dialog box does open, but then closes a couple ...
2
votes
1answer
229 views

How to make apprequest with custom text, like MyCalendar?

How to make this request ? (i mean custom text)
0
votes
2answers
431 views

Is there a way to specify the z-index of a FB.ui dialogue

I'm having an issue trying to get a Facebook feed dialogue fb.ui to display over some content on my site. I can't seem to find a way in the documentation to increase the z-index. What's the ...
0
votes
1answer
76 views

Is it possible to get the number of users messaged by the send dialog

I'm wondering if its possible to retrieve the number of people/friends messaged by a user when they use the 'send dialog' to send specific friends a messages (just a number is ok). I've been looking ...
2
votes
2answers
373 views

How to detect user logging out of Facebook after logging into my app?

My application uses Facebook authentication: FB.init({ appId: config.fbAppId, status: true, cookie: true, // xfbml: true, // channelURL : 'http://WWW.MYDOMAIN.COM/channel.html', // ...
0
votes
2answers
1k views

Facebook UI send

I am using this facebook ui FB.ui({ method: 'send', to: the_users_ids, link: 'http://ngtv2.info/', name: 'I have a message here http://ngtv2.info/', caption: 'The caption', description: ...
-2
votes
1answer
601 views

Auto publishing a feed from application - still supported or not? [closed]

Can anyone give a definitive answer on whether we are able to autopublish a feed to an application user's wall - if they have YES authorised the extended permission publish_stream. We have tried both ...
0
votes
1answer
201 views

Where did the Facebook app bookmark option go?

I am running a iframe tab app. After sending invites from my app, I need the users to be directed to the actual iFrame tab location, NOT the location of the canvas app. I heard that Facebook had an ...
1
vote
1answer
880 views

“Attachment Unavailable” on messages sent with FB.ui

I'm trying to include a link and an image in messages I'm sending with the use of FB.ui({method: "send"}); docs: https://developers.facebook.com/docs/reference/dialogs/send/ Note that I've seen this ...
0
votes
1answer
98 views

using FB UI to prompt user with an error mesasge

Is it possible to prompt a simple dialog using JS-SDK, FB UI, e.g. "The maximum upload size is 25MB.". There should be only the dialog and a button with a custom label.
0
votes
1answer
614 views

access to parent.document inside iframe

inside an iframe app if we call "parent.document" we will get "Permission denied to access property 'document'" error. it seems that there is no way to make changes in the iframe parent document when ...
0
votes
1answer
60 views

How do I present the nicer timeline-oriented style of Facebook permissions request dialog?

When I send a user to the authentication URL recommended by the Facebook developer documentation: https://www.facebook.com/dialog/oauth?client_id=...&redirect_uri=...&scope=... I see a ...
0
votes
1answer
579 views

Facebook Comments Plugin styling

I added the facebook comments plugin in mysite, I wanted to add styling to the plugin according to my site style. The below code which I added in mysite. <fb:comments href="<url>" ...
0
votes
1answer
684 views

Can't call FB.ui in dev (localhost) environment

I used to be able to, but for some reason all my Facebook Javascript API calls using FB.ui() no longer work in my development environment where my url is localhost:8080. In production it works fine ...
0
votes
2answers
2k views

Fb.ui() popup works but dialog loads forever

I want to ask a user to grant the "publish_stream" permission to my app with the facebook javascript sdk. I initialize it like this: FB.init({ appId : '203702512703', status : true, // ...
1
vote
1answer
404 views

Can I use other video formats besides SWF in a feed post?

I have searched for two days on google trying to solve this problem. I have also searched this forum and read the FB Dev page till my eyes hurt. I asked this question two days ago and it got ...
0
votes
1answer
784 views

AS3 Facebook.ui callback doesn't work

Today I'm going to use this method: vardataObject:Object = {...} Facebook.ui("stream.publish", dataObject, cb, "iframe"); function cb(res:Object):void { ...do something... } I always use this ...
0
votes
1answer
2k views

App Request Dialog, Popups in a new window [duplicate]

Possible Duplicate: Fb.UI Dialogs are displaying in Popups instead of an iframe I got this code for application request dialog: FB.ui({ method: "apprequests", message: "You have ...
0
votes
1answer
452 views

Javascript SDK Testing of FB.ui on localhost domain inconsistency issues

When I try to test on localhost sharing a link via FB.ui I get the following error: API Error Code: 191 API Error Description: The specified URL is not owned by the application Error Message: ...
1
vote
1answer
238 views

Style certain elements of FB.ui?

So I've done some google'ing and I couldn't find a good answer to this. I use the following code to allow my users to post a status update to their fb: <html> <head> <title>My ...
0
votes
3answers
1k views

Using FB.ui for “apprequest” and “feed” - JS error - c is not defined

I have developed two applications with FB.ui() calls to send app requests and ask to post status update with the "feed" parameters. It worked fine for several months, but for the past week I have been ...