Questions tagged [facebook-canvas]

Facebook Canvas is the application environment for 3rd party Games & Applications that live within Facebook, in a framed environment. Page displayed can be fetched from other websites.

Facebook Canvas is the application environment for 3rd party Games & Applications that live within Facebook, in a framed environment. Page displayed can be fetched from other websites.

Facebook Canvas Application Development documentation

390 questions
0
votes
1 answer

Facebook Canvas Setting not any more in the Advanced Tab

I am trying to find the canvas fluid options for a Facebook page tab. Unfortunately they are not any more in the Advanced section.
peter
  • 1
0
votes
1 answer

Facebook page tab content width set to 810px, getting cropped horizontally and vertically

I'm trying to create a Facebook Page Tab using a custom app and I cant figure out how to set the width correctly. The content is 810px, the page tab width is set to Wide (810px)and I've tried setting the canvas width/height to both fixed and fluid,…
0
votes
0 answers

Facebook authorize not working

Possible Duplicate: Facebook API error 191 I have an MVC facebook app. Here is the config:
DarthVader
  • 52,984
  • 76
  • 209
  • 300
0
votes
0 answers

PHP - Authentication issues on a Facebook Canvas App using mod_rewrite

I have a Facebook Canvas app that works with ids ?id= and I wanted to make the urls look a bit nicer so I added this to my htaccess file. RewriteEngine On RewriteRule ^u(.*?)\.php$ index.php?id=$1 This is the Login url for…
Matthias Dunnowa
  • 119
  • 1
  • 1
  • 12
0
votes
1 answer

Blank screen for canvas app

I followed this tutorial Gath Adams Tutorial:How to write a facebook application in 10 min I could tell from that it was a bit outdated from seeing how only 50% or so of the field names matched what I could see on my end as I was trying to make this…
0
votes
0 answers

Facebook Not Sending HTTP Referer to Canvas App?

This one's got me stumped. I'm setting up a dev version version of my app and for some reason the iframe is not receiving the HTTP referrer header. The app I'm working on relies on that header being sent. Can you think of any reason why the iframe…
Colin
  • 2,814
  • 5
  • 27
  • 37
0
votes
1 answer

runwithfriends licensing information

I cant find the licensing information for runwithfriends sample FB app. Can any one please point me to a link with this info? Searched exhaustively but cant find anything. I want to edit this app a lot to make my own app since the functionality of…
Anupam
  • 14,950
  • 19
  • 67
  • 94
0
votes
1 answer

Resizing canvas for the app

we have been trying to setup the height for a canvas app without luck. this is the code we are using window.fbAsyncInit = function() { // assume we are already logged in FB.init({appId: '', xfbml: true, oauth : true,cookie:…
Nikolaos Vassos
  • 246
  • 1
  • 13
0
votes
1 answer

Facebook Canvas IE 9 iFrame security issue

Occasionally, I will notice that IE9 will not display my application, it will display this message: "To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a…
kevin
  • 417
  • 4
  • 20
0
votes
1 answer

Facebook Canvas App Page -- Can I change it to the Fan Page?

First up, apologies for my non-technical-ness. I've looked and looked for an answer to this, but had no luck. My site has a FB App for the purposes of grabbing the auth token so people can share stuff they create on my site right to their FB wall.…
0
votes
1 answer

How do i prevent facebook canvas app from redirecting after user clicks "allow"?

I currently have a site and once a user "allows" on Facebook, FB redirects the user back to my website. This functionality is fine...however, I am trying to get this running in a canvas app. I would like to ask for permissions embedded in the…
Kamilski81
  • 14,409
  • 33
  • 108
  • 161
0
votes
1 answer

FB app requests redirecting to canvas page instead of tab page

When users send app requests, the requests point to the canvas page instead of the page tab. I know the solution is to point your Canvas App URL to a page that redirects to the page tab. However, it's not working. This is the JS on my redirect…
bevanb
  • 8,201
  • 10
  • 53
  • 90
0
votes
1 answer

creating facebook canvas app with cakephp

I'd like to create a Facebook canvas app with CakePhP 2.0. All the tutorials I've found seem to be out of date. Could anyone tell me how I can integrate facebook-php sdk into cakephp 2.0 ? Any help will be appreciate :-)
0
votes
1 answer

Is there any way to prompt for permissions in a lightbox using the JavaScript SDK?

In FBML applications, you could prompt for extended permissions like so: Facebook.showPermissionDialog('publish_stream', callback); This rendered a lightbox (much like FB.ui({method: 'foo', display: 'iframe'}); does). From what I'm seeing in the…
0
votes
2 answers

FB.Canvas.setSize() looks not working in Safari and Chrome. How make it work?

I'm creating a Facebook canvas application to be loaded in the iframe. The height of the content could differ because of the dynamic data loaded there and cannot be set beforehand. The canvas should resize itself to fit the content automatically. I…