Questions tagged [facebook-ui]

46 questions
0
votes
1 answer

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 method and it always work. But today the callback…
fraymas
  • 135
  • 9
0
votes
1 answer

App Request Dialog, Popups in a new window

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 a gift! Click accept to see what it is!", data: gift,…
0
votes
1 answer

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: redirect_uri is not owned by the application. This makes…
Tal
  • 1,298
  • 2
  • 10
  • 20
0
votes
3 answers

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 encountering error : c is undefined line 18 : …
Thomas H.
  • 1
  • 1
0
votes
0 answers

Game invite for non-hosted game

I'm working on a game using Facebook, but not hosted by Facebook. One of the things I would like to do is to invite other people via Facebook to play a game. I've found the invite API, that looks something like this: FB.ui({method: 'apprequests', …
PearsonArtPhoto
  • 38,970
  • 17
  • 111
  • 142
0
votes
0 answers

Facebook Authentication scenario with Appium

I am testing in Appium a native mobile app. In the facebook login scenario, i have noticed that the UI of the authentication popup changes randomly and that causes tests to fail. Any idea how to control this? I mean, can i create two verifyat()…
0
votes
1 answer

How can I use FB.ui to create unpublished post

I have been trying to use fb.ui to create an unpublished post. Cant find any documentation for it. Is this possible with v2.8 ?
0
votes
1 answer

facebook share/apprequest dialog size (mobile)

I would like to know can I change the apprequest dialog size in mobile version? I tried .FB_UI_Dialog to change the width, but it will change all dialog. I only want to change apprequest and share dialog
0
votes
1 answer

Why Facebook share image appears small even when og directs to right sized file

I'm making a Facebook sharer with FB UI. I have og tag: The image is 1200 × 627. The og debugger doesn't give any errors. However, when sharing the link, share…
Jaakko Karhu
  • 2,298
  • 4
  • 28
  • 41
0
votes
0 answers

Replacement of FB.ui feed to post to other app-user timeline

I am creating a new facebook web app, in which there's a function allow user to post to other app-user timeline, and here's the code FB.ui({ api_id: '1234567890', method: 'feed', link: 'http://www.example.com/fbshare-test/', caption:…
0
votes
0 answers

Facebook UI - share larger image

We're launching a web application (html/js/css, all browsers) where a user can build their own custom image as part of the experience. We generate it server side and return it to the page. It's stored in our file system in a publicly accessible…
Randy Hall
  • 7,716
  • 16
  • 73
  • 151
0
votes
1 answer

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', description: ( 'Ayez un domaine…
0
votes
1 answer

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 the error is due to fb not being able to read the…
lee
  • 738
  • 1
  • 7
  • 18
0
votes
1 answer

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 }; FB.ui(obj); Is there any possibility I can change the…
funerr
  • 7,212
  • 14
  • 81
  • 129
0
votes
1 answer

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 of second later. This pretty much renders the…
Mike
  • 8,767
  • 8
  • 49
  • 103