views:

407

answers:

2

Hi,

I am not able to integrate the iPhone application with my rails application both using fbconnect as the session details that i send along with the request from iPhone are not recognized by the facebooker plugin. The request from iPhone is as follows:

[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:3000/i_phone/get-user-info?fb_sig_session_key=%@",session.sessionKey]]];

and in rails application i use

set_facebook_session

method from facebooker plugin.

Can someone tell me whay am i doing wrong here and what is the right way to do it.

A: 

I am requesting localhost as my web application is also hosted on the same machine locally.

Hitesh Manchanda
+1  A: 

You should check out the ConnectiProxy demo put together by ckhsponge on github. He's posted sample rails and iphone apps that work together to handle secure facebook connect authentication between iphone and rails.

Rails app http://github.com/ckhsponge/connectiproxy

iPhone app http://github.com/ckhsponge/facebook-iphone-sdk

Arrel
thanks for your response.This seems quite useful.
Hitesh Manchanda