facebook-application

Linking a facebook app's page to an existing facebook business page

I have a facebook app page, and a separate facebook business profile page. The business page was created, but not by me, some time before the app and its page were created. Is there any way to connect the two pages, or import the content and friends from one to the other? The older profile page has some content; a set of friends an...

Access Facebook UserId in Facebook Canvas before OAuth Authentification

In my facebook canvas applikation, i store the access token in session. (I use ASP.NET MVC) But i want to store the access token in a database along with the facebook user id that i can save different access tokens for different facebook users accessing my application. So when i query the facebook user id and if it doen't return any ac...

Facebook mutual "likes" not showing

Hey guys, I just build a Facebook fan page and the mutual likes are no longer showing up. I've tried googling around a solution but can't seem to find the proper way to ask this. Before I uploaded my custom polls and all, mutual likes were showing up, but now only the regular likes are showing. Does anyone know the proper FBML or code r...

Having Trouble Accessing Email from Facebook Oauth

Hello, I can't get the proper token to reach the extended user information (specifically email) from the Facebook API. I've correctly given my app permission to retrieve the email, so I know I have the correct permissions. I'm trying to convert a session to a token using the exchange_session method as you can see below in my code: ...

Post from Flash to PHP in Facebook app

Hi, I published 2 days ago a Facebook app, it's a flash game, after the game over, the flash file POST score to my php file, Publish your score to wall if you beat your highscore, Facebook disabled the application because bad reviews from users. How to POST from Falsh to PHP without redirecting the user, i want after the game over POST...

facebook likebutton problem

I am little new to this.I have searched google but did not find a solution.i have created a php site and added facebook like button XFBML version.it is a dynamically generated php site whose webpages are generated as users enter data.the pages are of form (index.php?id=563).like button is working fine.but problem is that i wanted that i...

implement facebook login

I want to implement facebook login using php. the php page should automatically login to facebook using a user name and password specified. is it possible? which platform should i use. the script should not aske for username and password. just log in using a username and password probably stored in a mysql database or php variable. ...

can FB.login() display as page for facebook iframe application?

here is my code? FB.login(function(response){ console.log(response) if(response.session){ connectFacebook(); } },{perms:'email,read_stream,publish_stream,offline_access'}); I need to permission user to use my applica...

How to navigate to different Silverlight Control in Facebook Canvas ASP.NET MVC Application.

In my Facebook Canvas application i have the following problem: The Facebook application is running in an iframe inside Facebook. Basically it is an ASP.NET MVC application with two different silverlight apps nested in two different Views(and different controlls) If the user is in one silveright control the user should be able to navi...

Facebook Application: Hidden Content

Hey, I am fairly new to the whole coding game as well teaching myself how to execute the fbml mark up language properly. Currently I am trying to develop an application for revealing hidden content once a facebook user "likes" a specific page. I have looked at several different forums, blogs, as well as applications to get me off to a ni...

How do i track the friend invites in facebook api

i uses FBML multi-friend-selector(condensed) to display friend invite list in my app. I want to track the number of requests send at a time and update it to my DB. I have gone through api documents, but find nothing.I am using the new PHP SDK for facebook. Also i want to know if it is possible to use a custom button or image instead of ...

How to post HTML content in facebook wall using facebook api in php

How to post HTML content in facebook wall using facebook api in php I have used below codes but not working $result = $facebook->api('/me/feed/','post',array( 'message' => '<h1>This is my demo Face book application!</h1>')); And I used as below code using php concatenate the HTML string $result = $facebook->api('/me/feed/','post',a...

What statistic can be collected about the use of facebook apps?

Is it possible to track how often and/or when a Facebook user is using any facebook app? What if they have installed one of your apps, can this be used to collect statistics about app usage? For instance, you could say that a user spent 8 hours playing Farmville in the past 24 hours. Or even total usage of a specific app. What sta...

Facebook api wall post in php

I tried below code not working $attachment = array('message' => 'some meesgae', 'name' => 'This is my demo Facebook application!', 'caption' => "Caption of the Post", 'link' => 'http://mylink.com', 'description' => 'this is a description', 'picture' => 'http://mysite.com/pic.gif', 'actions' => array(array('name' => 'Get Search', 'l...

How to programmatically "press" a 'Like' button through a Facebook Application?

I'm developing this Facebook Application and I was wondering if it's possible (and how) to programmatically, through the Facebook PHP Graph API, press some 'Like' button on some page? Of course, this is optional on my application... I'm still not ready to really explain what application I'm doing, but it would be interesting to code suc...

Requesting extended permissions for Facebook pages

Does anyone here knows how to request extended permissions for a Facebook page using the new authorization mechanism for use with the old REST API? The documentation tells that you need to redirect the current user to this url: https://graph.facebook.com/oauth/authorize? client_id=...& redirect_uri=http://www.example.com/callb...

How to do “permission page” to facebook application?

Please, help me how to do it. When I use another application it seems very simple. It is in every application. I have read documentation and it does not. I make this in "circular" way, but it's working so ugly. ...

why do i need authentication when all i want is public facebook data

i am creating an app using the facebook C# api i want to read the data on this wall: but when i call the api and essentially hit this URL: https://graph.facebook.com/123176767150 I get this error: { "error": { "type": "OAuthException", "message": "An access token is required to request this resource." } } why do...

Is there no longer a connect URL for using the Facebook Javascript SDK

Its quite possible I'm missing something obvious here; I hope so. I have been trying to get a Facebook game that posts to the user's wall after the game has finished working. As I understand it, this should be a pretty simple process (and there appears to be several different approaches). I have tried most of these, and they all seem t...

Facebook oAuth 400 Error from ASP.NET application

ASP.NET application performing oAuth with Facebook. This code was working fine until a few days ago and now suddenly throws 400 errors. Cannot seem to find out why - the code has remained unchanged (verified using SVN). Can anyone help with might be the cause? Description: An unhandled exception occurred during the execution of the curr...