Questions tagged [facebook-apps]

Apps on Facebook are web apps that are loaded in the context of Facebook.

Apps on Facebook are web apps that are loaded in the context of Facebook in what we refer to as a Canvas Page. You can build your app using any language or tool chain that supports web programming, such as , , or .

1342 questions
5
votes
2 answers

facebook api 2.4, user_group permission

i have make a web site that required user_group permission, but when i decided to Publish it, i submit my apps for the review, i have discovered that user_group permission could not be approved. But my website need to get the user groups list, how…
terzi_matte
  • 175
  • 1
  • 10
5
votes
1 answer

Create facebook App with old facebook API

I have some problem with the Facebook API 2.4. By default FB creates new app with the 2.4 version. Is there a way to create an app using the API 2.3? I just need a time to fix my sw for new version. Thank you
J.R.
  • 2,335
  • 2
  • 19
  • 21
5
votes
1 answer

Facebook Invalid Scopes error on test app

All of a sudden I'm getting an "Invalid Scopes: manage_pages" error during login in the test version of my Facebook app. The full error message is: Invalid Scopes: manage_pages. This message is only shown to developers. Users of your app will…
mettjus
  • 2,938
  • 4
  • 24
  • 32
5
votes
1 answer

Facebook login integration uncaught exception "could not connect to host"

I am trying to learn facebook integration using the PacketCode tutorial available on YouTube. The code works fine on my localhost (even when tested by logging in to facebook). But when I tried to run the code on Hostinger.in free host, it shows…
Rohan Sanap
  • 2,773
  • 2
  • 21
  • 39
5
votes
1 answer

Setting up Facebook App Domain as IP Address

I have a login with facebook on my website which I was testing locally on localhost. Now I have put it on a server and I am trying to change the facebook app configuration so I could make the login. Before I had: App Domain: localhost Site…
João Menighin
  • 3,083
  • 6
  • 38
  • 80
5
votes
1 answer

Unable to get facebook incoming requests

I am trying to implement send data and accept that data in my Facebook android game app.I am following https://developers.facebook.com/docs/android/send-requests/#notifications tutorial for that. I am able to send the request however I am unable to…
Kunu
  • 5,078
  • 6
  • 33
  • 61
5
votes
0 answers

Use manage_pages permission to develop an Facebook App

Right now I create a webpage where user can login to it with their Facebook credentials. I want to be able that this website is able to post to the wall of the Facebook Pages which the user own or maintains. I found a nice "tutorial" for that…
John Brunner
  • 2,842
  • 11
  • 44
  • 85
5
votes
1 answer

Getting Facebook Access Token from User Id and Facebook App Secret?

I'm trying to understand how the facebook api works. The end goal is to be able to read the posts from a facebook page. If someone has connected with my app on facebook can my c# application then get the posts from a public facebook page if it knows…
5
votes
2 answers

Laravel - call_user_func_array() expects parameter 1 to be a valid callback

I'm getting this error: call_user_func_array() expects parameter 1 to be a valid callback, class 'Symfony\Component\HttpFoundation\LaravelRequest' does not have a method 'url' The code I'm using is: routes.php:
Pablo
  • 1,173
  • 4
  • 18
  • 46
5
votes
1 answer

How to provide accurate prices with new Payment system

According to new payment documentation available here if we want dynamic pricing we need to set up a script that FB will call saying "User wants to buy x your items and wants to pay in currency CC" and our script should return the price in that…
igors
  • 358
  • 2
  • 5
5
votes
1 answer

Unlikes fail with February 2013 breaking changes

My app presently allows users to like and unlike posts in their feed, including posts from other users/friends. When I enable the February 2013 breaking changes, my app can still like posts from other users (POST postid/likes), but can no longer…
5
votes
0 answers

FB.ui apprequests dialog - popup goes blank and invitations are not sent

The initialization code: window.fbAsyncInit = function() { var bheight = $(document).height() + 50; FB.init({ appId: appid, frictionlessRequests : true, status: true, cookie: true, xfbml: true, …
4
votes
1 answer

Facebook API retrieve "All activity"

I'm looking for a way to retrieve the equivalent of what's shown on https://www.facebook.com/me/allactivity. Both FQL & Open Graph are fine. On the graph, /me/feed shows something similar, but it's missing likes, and tags and other things. Any…
p3drosola
  • 5,784
  • 2
  • 23
  • 30
4
votes
2 answers

Position:fixed in facebook canvas (iframe)

We would like to have an anchor DOM element with position:fixed in our facebook canvas app with a fluid canvas size. Because the app runs in the canvas iframe a simple usage of css position:fixed does not work: The iframe content does not see any…
Nils Blum-Oeste
  • 5,608
  • 4
  • 25
  • 26
4
votes
1 answer

Post image to an album on a predefined page

I'm trying to let a user post an image on my website to an album on a specific facebook-page. Before he's able to select an image on his computer he needs to be logged in at facebook and must have given the needed rights to our application (casual…