facebook-application

An open source Facebook app. for a valid cause :)

Hello all, I own a couple of pages against Child abuse and now I'm developing a Facebook application for fighting against Child Abuse. I'm somewhat a newbie, and I found many wonderful resources on the net, however, I don't seem to find what I really want. I know to build a basic app that accesses a user's basic information(using fb_si...

OLD REST API Facebook, doubt

Hi, I'm developing an FB app for my device. I'm using restServer.php for using REST APIS. I'm able to get accessToken, sessionKey using posting parameters n all. I have one issue, that the access token which i get using http://api.facebook.com/restServer.php, can i use with http://api.facebook.com/method/methodName?acessToken=...... Ple...

Facebook Application Tab -> External Linking with PHP

I currently have an Application on the Facebook Tab, and am wondering if there is a way for me to deep link into an item on that app tab. Example: User is in the application (which is searching books), finds a book they like, and wants to share it with a friend. They click to share it, and I can pull all the info, however I don't have...

Facebook API: Access Without Reauthentication

We're hoping to create mobile phone applications for (among other features) posting video to a user's FaceBook page. However, using their API, it looks like we would need to open a web viewer and have the user enter their login credentials every time the application is used. We would prefer to store these credentials so the user only h...

Getting started with Facebook's Open Graph.

Hello, I've been looking around for resources on learning to work with and use Open Graph by Facebook. I have their documentation page, http://developers.facebook.com/docs/, but am curious if there are any renowned online resources that other Facebook developers have been using? I'm all for documentation, but am most interested in a c...

show "share with friends" dialog with the new Facebook Javascript SDK

hi, is it possible to show a "share with friends" dialog with the new Facebook Javascript SDK? i'm using a frame-based application. in another app this feature looks something like this: ...

Facebook Stream Publish Issue: Modal stuck "loading..."

I have been experiencing intermittent issues with facebook stream publishes. When a stream publish is called, the modal placeholder pops up with "Loading..." but often never loads. Since the issue comes and goes, I had always assumed facebook itself was the problem. There is no modal error message as would be expected if an invalid param...

Post on a friend's wall on behalf of a user

Hello, I am writing a Facebook application that needs to post on a friend's wall on behalf of a user, but out of the scope of a canvas application. I have the following: App ID App secret publish_stream permissions for the poster This should theoretically be enough to do what I want to. What I am currently doing: Use app ID and app s...

Just added the Facebook Like function to my homepage - get Stack Overflow at Line 2 - What now?

I recently added a Facebook Like button to my web site home page - www.wideworldofhockey.com - using FBML. It works fine under Firefox. When I open the page under Internet Explorer, right away, I see a "Stack Overflow at Line 2" (sometimes line 3) popup. What is causing this? Is there something I still have to code in the HTML? Do I...

Facebook iFrame App. getSession -login- problem

Hello people. I have a problem on FB iFrame app; My php code is below $session = $facebook->getSession(); if ($session) { $params = array('access_token' => $session['access_token']); try { $uid = $facebook->getUser(); $me = $facebook->api('/me', $params); } catch (FacebookApiException $e) { error_...

Creating a leaderboard using Facebook APIs and the PHP SDK

Hi All, I'm a new Facebook developer. I'm creating a game and want to include a leader board. I'd like to build a fairly detailed leader board including the following information: 1) Name 2) Pic_Square or profile_pic 3) A general location (UK, USA or LONDON, NY) 4) Score I'm aware of how to get a current users basic information from ...

facebook application FBML: error code 405 when changing app from Iframe to FBML

Hello. I'm trying to write a simple facebook application using FBML. when I configure my application to work as an IFrame and I view the source i see the following: <html> <head> </head> <body> <fb:swf swfbgcolor="000000" imgstyle="border-width:3px; border-color:white;" swfsrc='http://url/file.swf' width='340' height='270' /> ...

Trying to integrate Facebook Authentication into a php web application

Hi guys, Am trying to integrate facebook authentication into my php web application without using the JavaScript version. I have downloaded the php sdk. The basic example works perfectly and i can get the user's public accessible information with the below code. $uid = $facebook->getUser(); $user = $facebook->api('/me'); However, ...

Facebook Custom Tab Issue: Wall content not loading

I've been having an issue with my page on Facebook for a few months now. I have added several tabs based on simple applications that load in content from my website. The tabs work nicely, but when I select the wall tab, having viewed my own content, the wall content does not load. It sits with the loading graphic. Any ideas? ...

Facebook "Like" to see canvas page

Ive seen this on a lot of facebook sites. I was wondering how to setup a welcome page and when the person likes that certain page they are then able to see more information about the page. ie: http://www.facebook.com/BacardiLimon under the welcome tab. thanks! Also a related facebook question. Does anyone know how the slide show at ...

facebook stream.publish

I'm making a facebook app and using stream.publish to share something on a wall. However for the 1) attachemnt link, and the 2) the FB UI action link, when I click either, it will load the page in the same browser window. I would like to somehow add into these links something like target="_blank" so it opens the link in a new tab. I kn...

creating a tab page for a FB Pages app

I have created a FB Pages app and am trying to figure out why my tab html is not displaying. when I go directly to my example.com/tab url that I have set in the facebook app settings I can see the expected HTML. When I go to my app tab on a sample facebook page I can see the request come for example.com/tab on my server as expected but...

How can I extract the fb:profile-pic uid attribute value using jQuery?

From the following XML, I must extract the value of the uid attribute (557103888) on the fb:profile-pic element: <li class="ui-widget-content ui-corner-tr ui-draggable"> <fb:profile-pic height="32" width="32" linked="false" uid="557103888" style="width: 32px; height: 32px;" class=" fb_profile_pic_rendered"> <img class=""...

How to architect and design Facebook friends integration into a iPhone app with cloud service

For some reason I can't find this information anywhere. I'm looking to figure out best practices for how to design and architect Facebook integration into an iPhone app that also has a cloud service backing it for my own (non-facebook) data. Specifically, assume a user is going to authorize Facebook access in my iPhone app and I want t...

PHP : Problem with Arrays

Hi, I'm a php newbie, and I'm creating a Facebook application for my flash game. In the main page of the application, I want to print the current user friends sorted by score. I get first user friends using my application with this API function: <?php $friends = $facebook->api_client->friends_getAppUsers();?> $friends is an Array wit...