facebook-connect

Facebook Connect OR Facebook Authorization using OAuth 2.0

I want to allow users to sign in using facebook as well to my website, since the recent release of new Facebook stuff, I am unsure which one to use. Previously, Facebook Connect was used. Now we have Facebook authorization feature, using the OAuth 2.0. Please tell me which one to use? and Is Facebook Connect going to be obsolete? I am...

how to load fb:request-form in iframe / connect app using ajax

how to load fb:request-form in iframe / connect facebook app using ajax calls? for example social city does it http://apps.facebook.com/socialcity/ the POSTing of selected friend is also done in ajax. how can this be done? ...

How to disable "Publish content to your Wall" when using Facebook's new Oauth2?

Right now when I use Facebook's new OAuth2 system, it tells the user that my app is requesting to "Publish content to your Wall". How do I disable this (for fear of scaring off users), as I don't need this enabled. Possible? ...

When is Facebook Connect supposed to call its delegate methods?

Hi The Facebook connect code is eluding me a bit. I have no problem doing a login, and a wall post, however, I simply can not figure out how the delegate methods for the FBDialog andFBStreamDialog is supposed to work. - (void)postToWall { FBStreamDialog *dialog = [[[FBStreamDialog alloc] init] autorelease]; dialog.delegate = s...

how to make it easy for users to register at my site?

I want to make it dirt simple for users coming to my site to register so they can post comments, vote on things, etc. I would like for them to be able to use their facebook id, twitter id, yahoo mail id, gmail id, AIM id, msn id, or whatever else people are likely to have (not necessarily all of those, but the more the better). I want ...

Facebook Graph API: Feed publishing showing up as link type instead of status?

So I'm publishing to a Facebook Group's Feed in my app, using the Graph API. It works fine, except facebook keeps treating the published info as a 'link' feed item type instead of 'status' like it does when I enter the same from facebook's site. eg: string url = "https://graph.facebook.com/<id-of-group/feed?access_token=<access-...

Facebooker2 template issue

Hi, When i include fb_connect_async_js javascript helper it is throwing an error , Facebooker 2 don't have action view template. Could you please tell me how handle this situation . undefined local variable or method `fb_connect_async_js' for ActionView::Base Thanks, Srini ...

Sort on amount of likes on facebook

I have a site with a bunch of links, the page is also connected to facebook (facebook connect) and you can "like" the links. I wonder if there is a way to sort on the "most liked" link? The links are stored in my database and of course the liking is stored by Facebook... ...

anonymous post Twitter, Facebook

Hi , Actually am doing shopping cart application , after good are transfered we are asking the feedback about our service , So customer will give the feedback, this feedback form contain the about our service , the ans are in the rating also we given an comment form , in that they writing something about our servce , So we have idea...

Facebook app without asking permission on load

How do I make an app that doesn't ask for permission when you load it? Or is that impossible? The only thing the application does is post to the user's wall, but can't I authenticate for that after they load the application? ...

Facebook Connect and Hash Password Encryption

I'm trying to integrate a Zen Cart site with Facebook Connect. So far, I've been able to get Zen Cart to recognize that the user has a facebook account and is logged in, but that's it. True authentication into Zen Cart eludes me because I can't figure out where a password could be stored and how to get it to Zen Cart to be compared with ...

CodeIgniter Production and Developpement server on the same domain. (no subdomain)

Hi, I googled this many times but now I have to ask it here. I want to make a workflow for a website for Developpement/Production. My constraint is that I use Facebook Connect (Facebook Graph now) so I need to have the dev and prod on the same domain and server. (to be able to log in and test the features) I thought I will edit the C...

Error code 100 while writing a code for Facebook API

Error API Error Code: 100 API Error Description: Invalid parameter Error Message: next is not owned by the application. Above it the error that I receives when I write the following code in my index.php file. < ?php $appapikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; $appsecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; require_once 'faceb...

jQuery plugin for Facebook "Like" Button

On lots of sites now, you can see a Facebook "Like" Button. - When depressed, it changes background color. - When mouse-overed, it allows you to write some additional text I love this interface - lightweight action, but allow for expression of more data if the user wants to. Anyone has written a similar plugin? UPDATE: See: http:/...

Facebook Connect Publish to Stream: how do I tag a user?

I have an application that allows martial arts trickers to 'battle' each other by initiating challenges and submitting videos and whatnot. When user A challenges user B, the application posts to the user's wall (the one who initiated the challenge). My question is how do I tag user B in the wall post? It essentially says "challenged Jo...

how to uload photo/image to facebook via iphone application

Hey all. i am integrating facebook with my iphone application. i can share text message in facebook, but i want to share/ upload photos to facebook through my iphone application. please let me know is there soution for this. i am trying the facebook sample code but it is giving me some errors: i searched out that error but other develop...

Facebook's new Javascript SDK stream.publish broken?

Using FB.ui({ method: 'stream.publish' ...}) It fails to accept my attachment media complaining it should be an array (while it is). The old API (FB.Connect.streamPublish) accepted the format just fine, and all the other options seem to be valid. I find the Facebook documentation to be a mess, somebody got this working with the new vers...

Inconsistent Session data from IE - cached sessions???

I'm trying to prevent some basic click-fraud on my site, and am building links based on session time data. Everything works in FF, but in IE the information I'm storing in the session is somehow being changed. When I load up the main page, I set my session variables like this session_start(); $_SESSION['time']=time(); I'm out putt...

Facebook users invitions by e-mail

I have a problem - need to add to site friends invite in style, as use this Youtube and Skype . Both of this networks has users e-mails, but havent associate every userID`s in Skype/YouTube with they e-mail. But both of networks have 3 things: Friends from external IN they network , but not friends on current network Friends from exter...

Using XFBML login button asks user to authenticate twice

I am simply trying to setup Facebook Connect to allow the choice on my already established site to register with the registration form, or to register with Facebook Connect (this really should be easier than it is, the outdated docs are driving me insane). When the user clicks the button, it opens the popup and asks to allow the things ...