facebook-connect

How to post 1 line story to user's wall.

I've been looking but can't seem to find an answer for this. What I want to do is this: on mywebsite.com a user clicks a button this button sends a message to facebook ("Soandso has clicked the button") I want facebook to then post a 1 line story to that user's wall "* So and so clicked a button!" Now, I've tried using stream.publish...

Facebook Connect/App Implementation Overview

I am just starting to design a Facebook 'app' that I would like to see work similar to the Netflix Facebook app. I have looked high and low on the Facebook developer site for details how how such an app might be implemented, but most of the documentation seems geared twords websites where a user is already logged into Facebook. Are ther...

Facebook Connect on phpBB2 !

Hi :) I'm trying to integrate Facebook Connection module to an old phpbb 2 version. Have you ever tried a similar integration or found a nice tutorial showing how to do it ? thank you :) ...

Is it possible to do a Facebook status update programatically in .NET?

Hi folks, I'm using Twitter's OAuth API to updates a user's twitter account (twitter status update) provided they give permission / authorise my site with their twitter account. works great. Can the same be done with Facebook? I was told Facebook connect does this, but all I can find are pages talking about how to make Facebook embedd...

Facebook connect and the "session" object

I'm trying to create an iPhone app that connects to FB using their API. The documentation says to do as such to session = [[FBSession sessionForApplication:@"key" secret:@"secret" delegate:self]retain]; ... but what is this "session" object. How do I define it? If I just use this code I get errors saying that "session" is undefined. ...

generate session key for facebook connect

i m developing a blackberry app in which i need to send a mssg to the wall of all my facebook friends, for this i need to have a session key. i have api key, secret key and obviously userid and password. how do i get the session key. i want to know about the api to do this.Any one please help me. thanks in advance. ...

Facebook Connect for BlackBerry

Hi I'm looking for a solution similar to the iPhone Facebook Connect (http://wiki.developers.facebook.com/index.php/Facebook%5FConnect%5Ffor%5FiPhone) for the BlackBerry platform. Basically, I need my users to authenticate against Facebook from within a native BlackBerry application (so, not a Web based mobile application). Is there a l...

How to close the Facebook pop-up login window after the user Connects?

Below is my code. For some reason, after the user logs into the little pop-up window, the little window will redirect back to '/" with a lot of session JSON junk at the end of the URL. How do I make it so that the little window closes, and my parent window refreshes? <script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/Fe...

After Facebook Connect logout, Facebook PHP class still thinks user is logged in

When a user first hits my site's login screen, I have Facebook Connect determine if the user is logged into Facebook and reload the page if true: <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"&gt;&lt;/script&gt; <script type="text/javascript"> FB.init('MY_API_KEY', '/xd...

How can I prompt user for additional permissions on page load?

Note: The application I'm building is a website type Facebook Application that uses Facebook Connect. I can prompt the user with a request for Extended Permissions using the following FBML code: <fb:prompt-permission perms="read_stream,publish_stream"> Grant permission for status updates </fb:prompt-permission> Taken from here. ...

FacebookConnect integration with ASP.NET

I'm working on a site with a Facebook Connect integration on blog posts. I want a Facebook .NET SDK that will allow me to: Authenticate that a user is logged into FB. The actual login will be done via the typical FBML login button and simple JS with the XD Receiver. Be able to push data from my WebForm to the user's FB profile, such as...

Facebook Connect not setting cookies

I'm trying to implement Facebook Connect on a website with .NET MVC using C#. I've followed the instructions here: http://wiki.developers.facebook.com/index.php/Trying_Out_Facebook_Connect step by step. I can make the login work as in that when I log in through the site I'm also logged into Facebook. In order to work with this in the ...

Authlogic Facebook Connect/Twitter oAuth helper issues

I am a complete newbie to the world of Ruby & Rails moving from the land of PHP & Symfony. I'm currently attempting to setup the Facebook Connect plugin & Twitter oAuth for authlogic. Authlogic works no problem but both of the others fail when I attempt to call their buttons- can someone tell me where I'm going wrong? I've put the stack ...

Facebook Connect - Show/Hide login button

I reference this questions: Show Hide Login Button Basically I've used the answer in this question to handle the show/hide the facebook login button, however when I go to different pages, the original login button shows up, then realizes I'm logged in and switches to my profile picture. Basically there's like a small delay happening. ...

Facebook Connect Examples - Connect.registerUsers and login/logout processes

I'm looking for example PHP code (preferably using the FB PHP library) that does the following: Let my website connect to my FB account when i log into FB connect. Store my facebook credentials (email hash and FBID?) locally Log me out of Facebook connect when I log out of my website Automatically log me back into FB connect without th...

Rotate iPhone Keyboard in Facebook Connect login dialog

How do I get the keyboard to show up at the bottom section of the screen on the iPhone when using the Facebook Connect iPhone library. I've set UIInterfaceOrientation to UIInterfaceOrientationLandscapeRight in my Info.plist file. The login dialog has the correct orientation and the keyboard knows to some extent it should be rotated be...

Facebook Connect Site Like Digg (PHP)

I'm looking for a PHP tutorial or example of how to set up a facebook connect site like digg. Basically allowing local users to connect their facebook accounts to their local accounts indefinitely (until they opt out). This would then automatically reconnect them to facebook every time they log in with their local accounts. I've been tr...

How to get pageId for pages the facebook user is an admin of? Using facebook connect.

The user authenticates using Facebook Connect and once that's done I want to retrieve the pageIds for the pages he is a fan of. Once that's done; I want to publish something to the wall of that facebook page. I found methods describing how to publish to a page in the facebook documentation; but those methods require a pageId variable. ...

Grabbing data from an i-frame embedded Facebook application

Using an iFrame, someone on my website can access their Facebook account, display a list of their photo albums, and then display photos from selected albums. At the moment, when the user clicks a photo, I display a dialog box that shows the photo's path. All of the above works perfectly. My next step is to pass the photo's path info b...

Fb:share-button with json attachment?

I've got some code right now that reliably produces the json I need formatted just the way I like it for my facebook app's streamPublish FBJS call. Now I'm playing with facebook.connect and I would like to just reuse the same json . I noticed the XFBML tag: <fb:share-button> while exploring facebook.connect, and thought that this woul...