facebook apps in perl

Deliguy

New member
Sep 27, 2006
5,162
195
0
Oregon
anyone have any experience with this?
The documentation and example codes i've found are complete shit and most don't even work. I'm a good perl programmer but I need a bit of direction and guidance.
 


Give in to PHP + SQL. Tons of documentation IMHO.

Yes, probably not the answer you where looking for.

PS. Need a PHP & SQL programmer hit me up, I may take on a project related to this.

PPS. No one develops in perl for Facebook, hence the reason there's no code for it. Seriously, give the fuck up.
 
rage9, I think i already have you on aim. I'm ReligiousPickle. The guy thats been bugging to hire you for a job since october 8th :)
 
PPS. No one develops in perl for Facebook, hence the reason there's no code for it. Seriously, give the fuck up.

ORLY?

User:Perl - Facebook Developer Wiki

So that's not a Facebook API for Perl?

Sample Sniplet as provided by Facebook

Code:
# Retrieve Data stored in key value pairs in
# comment blocks within the FBML of a user's 
# profile box.
sub getData {
	my $id = shift;
	my %data;
	$_ = $fbk->profile->get_fbml(uid => $id);
	while ( /<!--(.*)-->/g ) { 
		$_ = $1; 
		while ( /(\S+)\s+(\S+)/g ) {
			$data{$1} = $2;
		}
	}
	return %data;
}
 
O
So that's not a Facebook API for Perl?

That's not my point, just because there's and API doesn't mean anyone really uses it for Perl. Which in turn means your going to find about no help for it what-so-eva.

And I was incredibly plastered when I wrote it.

The guy thats been bugging to hire you for a job since october 8th

ROFL, I figured by now you had someone else do it. Get a hold of me, I have time to throw my ninja skills at it if you still want it done.
 
well like everything else it has a nice little easy to use cpan module. Problem is there is very little documentation for it and the few example codes out there on using it are wrong and not only don't work but are full of syntax errors which make it very difficult to figure out what they did wrong. So at this point i'm stuck guessing and checking everything trying to just throw commands out there and perldumping all the results trying to workout what is what and what and see if i can figure out what inputs are what. I figure if i can find one person who has done it before this will save me a shitton of time.

I'm very determined, not giving up on this and yes I know php I'm just not experienced enough with it to start cranking out these apps once i figure out the facebook portion and thats the end game. :)
 
php is great as a first language, and for portability/support. it has the benefit of being the most popular web language, and so most common web tasks are extremely well documented. but if you already know another language, i would learn anything but php. learning any other language will increase your skill as a programmer; learning php will accustom you to odd conventions and bad practices.

perl is also pretty great for cpan, but lacks the "hotness" factor. picking a popular language is an important part of finding relevant example code on the internet. you could write it in brainfuck, but where would you go with questions?
 
Are you looking to make a facebook API app using perl, or are you looking to make a bot using perl such as logging in and updating status?