facebook

[facebook] get data from Fb.api stream.getComments

Here is my code to query all comments for post_id. When i run it. i cannot get text or id of comment. var queryTemplate = "SELECT text FROM comment WHERE post_id ='1756044141_155528821125475'"; var u2 = FB.Data.query(queryTemplate); FB.Data.waitOn([u2], function(args) { //console.log(args[0]); alert(args) }); fo...

Facebook Like Button Text in feed?

With the facebook iframe like button, am I able to specify what text shows up in a users stream? When I use a plugin for a wordpress blog post it shows up at USERNAMe likes POST TITLE on BLOG NAME but when I try and put it on another page with the straight up iframe code, i just get: USERNAME likes http://www.pagename.com/bla/bl...

How to retrieve top users via FaceBook's API?

Is it possible? How to to do it? ...

Facebook authentication for Django projects

Hello, world! Which implementation is most correct, modern and easiest in your opinion: http://github.com/dickeytk/django_facebook_oauth or http://github.com/teebes/django-facebookconnect/ or http://github.com/tschellenbach/Django-facebook ? Thanks! ...

Problems with Facebook-Api publish_stream in iPhone application

I've added Facebook Connect to my new iPhone application. Everything perfect, no problem. In this application, however, I need to post on user's Wall without prompt any dialog box. I've searched in Facebook Documentation and, from what I understand, if I ask user to give me the right permission (in this case, publish_stream), the dialog...

API Error Code: 100 API Error Description: Invalid parameter

I'm using facebooker plugin to connect my website with facebook in Ruby on rails application. My application used to work fine before 1st June 2010. But after that I'm getting error - API Error Code: 100 API Error Description: Invalid parameter. in the pop-up. What I have found id is we need to enable "New Data Permissions" in migration...

How to get a Gesture View like in official Facebook app

I want to implement the same behaviour of the notification view in the official Facebook app. The "notifications" tab are at the bottom and can drag/drop via fingers to full screen. How can i do that? I've tried it via ViewFlipper and Animation.... But no success. Does anyone know how we can do this? The app "Zedge" has the same in t...

Facebook, FBML: Is it possible to integrate application developed in php sdk with the Fans Page?

Is it possible to integrate application developed in php sdk with the Fans Page (Show application in Fans page)? Please let me know the eg. how to achieve this? ...

[facebook] Query first_name, last_name, pic, from user and join with comment.

Hi! I would like to query user information like (first_name, last_name, pic, uid) then join with comments data such as text, time. first this is my query for comment SELECT text, time, username, fromid FROM comment WHERE post_id ='123456' then i need to join this query with user SELECT first_name, last_name FROM user WHERE **uid='...

Facebook App - Server Change

I was running a PHP Facebook Connect app on a server through Joyent's Facebook Development Program. I recently went ahead and purchased a server though them and moved my app over to the new server. I updated my application settings on the Facebook side of things, but now the application connects, prompts for the permissions, and return...

Facebook signed_request validates but no data in decoded payload: C#

Folks, would really appreciate your help on this as maybe I'm just missing something really obvious. Basically, i'm trying to develop a Facebook canvas iframe app in C# ASP.NET that a business can install on a fan page and users can access via a tab. Main Requirements: 1. Business clicks install which takes them to apps.facebook.com/m...

validating fb cookie using md5 hash

Hello, I am trying to incorporate facebook login in my ASP.NET web app and came across the following article which has a code sample for the same. http://ntotten.com/2010/04/new-facebook-connect-in-csharp/ The following is from the article. Next, and most importantly, the class validates the cookie. This validation uses MD5 h...

facebook: PHP graph api getting NULL session

I am following this tutoril. Though the user is logged in into facebook, but the session is showing him not logged in(NULL session). Please someone help me out. My code-segment is as follows- $facebook = new Facebook( array( 'appId' => $app_config['app_id'], 'secret' => $app_c...

Facebook Sharer from Embed Flash Application

Hi guys, I have a small problem with a the Facebook sharer.php! I'm developing a small flash application (kind of slideshow) that will be embed into different website. In the application there is a button that send a request to Facebook to share a link. So based on the Sharer.php doc, I send a request like this : http://www.facebook...

What are the different levels of Facebook integration?

I am kind of confused about the many different types of integration facebook offers. It used to be simple, but there seems to be so many different options now website "likes" the big box where they show the user how many of their friends like it facebook connect What are the different options? ...

An example of how to call admin.setRestrictionInfo from PHP SDK

This is what I got so far and the returned result is empty $params = array( "method"=>"admin.setRestrictionInfo", "restriction_str"=>"{'age':'21+'}" ); $this->fb->api($params) According to this page http://wiki.developers.facebook.com/index.php/Session_Secret_and_API_Methods I need to pass the Application Secret along with ...

Prompt wall publish (Facebook) using Old Rest API

How to prompt dialog to the user, to publish something on user wall (Facebook) using old rest api for C# and ASP.NET??? Because while using Api.Stream.Publish, it directly publishes on the user's wall without asking to the user. ...

How to embed Facebook "Invite Your Friends" plugin into my website?

Anyone know about this? I am trying to embed that plugin and am lost. I have already tried this and this is not working at all. http://developers.facebook.com/docs/reference/fbml/request-form A help would be appreciated. ...

Facebook multi-friend-selector for iframe application?

I would like to add facebook multi-friend-selector in my facebook iframe appplication that using PHP. Can i add it to my application? on anyway? Thanks! ...

How to show a facebook themed dialog box with custom message in IFrame mode?

Hi, I would like to show a dialog box using javascript, just like using alert() but the dialog box should have a facebook theme/style. I am doing it in Facebook IFrame mode. Must I use FBML mode to show facebook style dialog? Thanks. Wilson ...