fbconnect

how to use stream.publish method in iphone?

I am implementing FBConnect in my iPhone App.I want to post a predifined message to all facebook friends at once of the logged in user. How to do it? Please paste the total code. Any urgent help would do. Thanks in advance. ...

set or update profile picture using fbconnect facebook ?

hello .... i have a image and i want to set this image as the users profile image. i came to know that we cannot upload directly to "Profile pictures" so i uploaded it in some other album and now i want to set this image as its profile pic ??? any idea how can i do that using fbconnect ? thanks in advance ...

Facebook Connect for iPhone persistant login

Hi, I have implemented Facebook Connect in my iPhone project and it is working great. The only problem I have is that every time the user closes the app, the next time they load it they have to re-enter their username and password to login even if the 'keep me logged in' box is checked. My question is is there a way to save the user's ...

Twitter and Facebook on iPhone - save sessions across app launches?

Hi I am using OAuth for twitter and fb-connect for facebook authentication in my iPhone app. Is it possible to save the user sessions across app launches? i.e. if the user logs in once, the next time they launch the app, we log them in automatically from some state saved the last time the app closed? For Twitter would it work if I ju...

iphone facebook wall posting with image map link

Hello, is possible to attach a link (image) of a google map on the side of my wallpost throug iphone? my wall post is ok, but i've no idea how to do with the map. Ps in my app i've implemented also mapkit, i don't know if i make a gquery with coordinate to obtain map link or i must work using the position that i have on mapkit i've foun...

when using FBConnectAuth for .net. How to retrieve users wall postings?

I need to retrieve a list of the users wallpost from facebook in .net. Im using C#. If anyone can help that would be great! Thanks! ...

upload photo and publish story using FBConnect

In my iphone app,I want to let the user upload an image to his facebook photo Album and publish a story at the same time.The story's media field contains the uploaded image's url.I successly uploaded the photo and got the result's "link" and "src_small" property.But when I use FBStreamDialog to publish the story,I got: At last,I find ...

Issue in facebook.stream.addlike in fbConnect for Android?

I'm using fbConnect for Android for facebook functionality for my app. When I'm using facebook.stream.addlike I get error_code 100 and "Missing post identifier" as error detail. Find my code snippet below. Map params = new HashMap(); FBSession fbSession = FBSession.getSession(); params.put("post_id,", postId); String uid = f...

iphone facebook - how to share movie to wall using fbstreamdialog

Can some one suggest me a tutorial related to iphone code for sharing a mp4 file on facebook wall using Facebook API. I'm trying to use FBStreamDialog, but failed....... ...

fql - fbconnect getting first post ever

I want to get the first stream record ever. I tried: SELECT post_id,created_time FROM stream WHERE source_id = 610611346 ORDER BY created_time ASC LIMIT 1 But it gives me the LATEST instead of the FIRST post :(. I increased the limit to 5 just to have a look at what it was bringing back and it is simply the last 5 posts in ascending o...

FQL Album not Working in Iphone (FBConnect)

Hi guys, NSString *fql = [NSString stringWithFormat:@"SELECT cover_pid, name FROM album WHERE owner =%lld", self.usersession.uid]; NSDictionary *params = [NSDictionary dictionaryWithObject:fql forKey:@"query"]; NSLog(@"--FBRequest-- %@",fql); [[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params]...

Login to facebook without using FBLoginButton - iPhone

Hi Is it possible to start an FB session in an iPhone app without using the FBLoginButton? I would like to let the user login when they click on a table row. Thanks. ...

Executing a SQL-script dosn't success

Sorry for my English first of all. I have a problem and need help. I have a simple tool made by myself on c#. This tool makes connect to local or remote firebird server (v.2.5). And my tool can create specified .fdb file (database) somewhere on the server. Also i have a file with sql-statements (create table, triggers and so on). I wan...

android fb-connect layout disordering issue

I am using fb-connect for android app problem is when keyboards gets open layout distorted ?? I think they are opening facebook login page in browser any quick fix to add done button and layout disordering after keyboard get open ...

FBConnect not working with iOS4??

I upgraded to iOS4 and noticed that -(void)session:(FBSession*)session didLogin:(FBUID)uid is no longer invoked. I have set the view controller as an FBSessionDelegate. Has anyone come across this problem? ...

Facebook javascript/ fbconnect ifuserconnected causing problems

Hey, well I'm reading the fb connect tutorial here http://wiki.developers.facebook.com/index.php/Facebook_Connect_Tutorial1 The problem I'm having is near the end of the tutorial, it's saying do do this <script type="text/javascript"> FB.init("apikey","xd_receiver.htm", {"ifUserConnected" : update_fbuser}); </script> as oppose t...

Getting 10 friends from friend-list problem in fbconnect problem

i am trying to fetch 10 friends list using fbconnect my query is like this NSString* fql = [NSString stringWithFormat:@"select uid from user where uid == %lld LIMIT 1,10", _session.uid]; NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"]; [FBRequest requestWithDelegate:self] call:@"facebook.friends.get" pa...

Display FBDialog in correct size on iPhone

Hi there, I am trying to display a connect dialog for facebook in my app. The dialog view pops open and loads from facebook. But the page shown is one for regular browser, not the version optimized for mobile phones. Do I need to do anything with my app or on facebook for it to work? Or do I need to provide that form on my server? Con...

FBconnect is not working in android :(

I have follow the step mentioned in http://code.google.com/p/fbconnect-android/wiki/Setup But it is giving error on project build UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added: Lcom/codecarpet/fbconnect/FBLoginDialog$FBRequestDelegateImpl; [2010-08-07 16:46:13 - fbconnect-sample] at com.android.d...

Importing Facebook data (education and experience) from facebook

Hi, I want to allow users to import their Facebook education and experience entries into a job board site. Something like this site does http://www.jobster.com/at/person/edit_profile (see the FB icon on the right, under the sign in form) Do they simply use the good old FB Connect to achieve that or is it something else? ...