facebook

Send POST data with FBML on Facebook

I'm new at this, and I can't seem to find the documentation that explains this. But I want to create a Facebook page, where you can send POST data to an external server, preferably with AJAX. Can someone please point me in the right direction, as I'm stumbling blind. ...

Javascript in address bar, how do I decipher?

Hello stackoverflow! I have a javascript code that appears to be encrypted: javascript:var _0xe788=["\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x61\x70\x70\x34\x39\x34\x39\x37\x35\x32\x38\x37\x38\x5F\x62\x6F\x64\x79","\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64","\x3C\x61\x20\x69\x64\x3D\x22\...

Filter Facebook Stream by Post privacy?

Hi there, i query some wall data within my facebook tab. I was wondering how to filter the data (query) to show only post which are visible to a certain country. $query = " SELECT post_id, created_time, attachment,action_links, privacy FROM stream WHERE source_id = ".$page_id." ...

Facebook AS3 API publishPost() problem

I'm trying to finish a facebook app using the AS3 API. Im having trouble when using the publishPost (message, attachment, action_links, target_id, uid) function. I can get it to post on the user's wall setting the uid=user.uid BUT I can't make it post on the user's friends wall! Setting the target_id=friend.uid isnt working for me I'...

facebook api fan page user list

is it possible to get list of uids of users who is fan of specific fan page with facebook api ? ...

Why is my facebook app profile box not updated after I change it on my server?

Hey, I just recently started to develop facebook apps, so heres my simple question: My app displays a profile box, but whenever I update the file on my server, facebook still displays the old version. How can I make facebook use the "new" code? Thanks Simon ...

Howto: Limit access to my facebook appliation

Hey, I developed an application for my masters class, that I want to limit ONLY to my masters class. Can I somehow limit the access? Or even connect the limit to the users in a group? edit In addition: if I have all the fbids of the users I want to have access to my app in my database, can I limit the view in the profile box? it seem...

How to allow users who don't accept a permsToRequestOnConnect : publish_stream

I use FB connect and have a permsToRequestOnConnect : publish_stream set. I'd like to grant users access to the site even if they click "Don't allow", but this doesn't seem to work. I'm using Facebooker with Authlogic, and when users hit "Don't allow" it just doesn't log in and stays on the same page. ...

Facebook friends.getLists failing

Hi all, I'm trying a simple request on Facebook to return all my friend lists. I'm trying this in Facebook's test console, as well as through an iPhone app i'm working on. friends.getLists (also alternatively through FQL) SELECT flid, name FROM friendlist WHERE owner=4810796 I am currently logged in, so using that number should b...

Post offline notifications from my website

Hi All, I have a website (www.cadi.com.tr in Turkish) and a facebook page for my followers (fans of the website) with about 10000 members. Right now, everyday I log into my facebook account (http://www.facebook.com/#!/pages/CADI/20643040386?ref=ts), then go to my website and "share" new posts to my facebook account. I do not want to go ...

Publish content to Facebook

I apologize if this has already been answered, but all the information out there on Facebook publishing is so confusing and conflicting, I haven't been able to get anything to work yet. I'm trying to set up an application that runs on my local server to publish content to my organization's fan page (this will tie in with my WCMS to cross...

"Find Friends" using Twitter Oauth or Facebook Connect connections

Using Twitter OAuth, I'm saving the user's data as JSON in a "twitter" field in my database. Likewise, I'm saving the user's Facebook Connect info (including persistent session_key) as JSON in a "facebook" field. For most operations, this is great. However, I'd like to add a "Find Friends" function that will grab the user's friends fr...

Get user email address with Facebooker?

I know the user needs to give the application "extended permission" for access to the email address. I went through the Facebooker documentation (I am using it for an iFrame app for whatever it's worth) but can't find any related stuff in the documentation or any sample code. ...

How to let users post links/images to Facebook, Twitter, Buzz etc... from a Rails based website?

I'd like to offer users the ability to post images / links to articles from my web application to Facebook, Twitter, Buzz and any other social network. A perfect example of the functionality I'm trying to replicate is mashable.com ... where each social network is represented by an icon that a) shows the number of shares AND b) allows us...

facebook problems with the Notifications.getList api

Hello all im trying to invoke the Notifications.getList api but no matter how i send the parameters im getting error 101 for example : Item Url:http://api.facebook.com/restserver.php?start_time=4294967295&amp;session_key=a99fdd8150a8xxxxx65c2-10000xxx455&amp;method=Notifications.getList&amp;include_read=true <error_response xmlns="http:...

Facebook API friends_get is extremely slow

I have a PHP application running in iFrame mode. I am rendering an <fb:multi-friend-selector condensed="true"> inside of <fb:serverfbml> tags. This is inside a PHP file that calls a function that gets a list of user IDs using $facebook->api_client->friends_get();. The multi-friend selector renders just fine, but, when I leave the frie...

Facebook API non-interactive authorization/login

Hi, i'm trying to build a facebook API client using python, code follows: import os import urllib2 import urllib import cookielib import hashlib import json USER = '' PASS = '' LOGIN = 'http://www.facebook.com/login.php?login_attempt=1' HOST = 'http://api.facebook.com/restserver.php' API_KEY = 'eca5c767f0e5b65942419574374c34a4' SECRET...

jQuery plugin to have Facebook styled search box with image thumbnails?

Hello everyone: I will work on a search box with inspiration from Facebook where image thumbnails would be displayed besides the auto-suggested matches. This is the goal : link to sample image I wonder if there is any jQuery plugin that would just do this. I tried to search for a one but unable to find. If there is no plugin for this...

iPhone FBConnect, dashboard.addnews

Hi, The question is: how to add news via FBConnect?? I have the following code: NSString *newsBody = @"[{\"message\": \"News message\" }]"; NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"]; [[FBRequest requestWithDelegate:self] call:@"facebook.dashboard.addnews" params:params dataParam:n...

fb:request-form in iframe redirects away from facebook

I have an <fb:requestform> in an iFrame Facebook app. I have set target="_parent", so that the callback will target the parent iFrame and not itself, which seems to work as expected. But, instead of my desired file loading, I get redirected to my server. Checking the response of the requestform's POST in Firebug revealed this: <scrip...