facebook-connect

How to get facebook session key with facebook-java-api

How do I get the session key with the facebook-java-api ?# What I did so far is this : After I authorised my app to acces my facebook account I do get redirected to the right redirect url in my app and there I do FacebookJsonRestClient facebookClient = new FacebookJsonRestClient ('key', 'secaret') String token = facebookCli...

Facebook Connect api in php

HI, I hava a website in php where i have integrated a Facebook Connect API which enabled the Facebook login button. I login using the button by providing my Facebook credentials. It gets logged in. I can access my profile picture, full name and some other information. But i can't access the user email id i.e. the Facebook user id. I hav...

sending message to friends using facebook-API from iphone application

Hi Guys, I tried to send the message from facebook in my application for that i used the following code segment using graph API call. SBJSON jsonWriter = [[SBJSON new] autorelease]; NSArray eventdict = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:@"Always Running",@"text",nil], nil]; NSString * event = [j...

FB.login redirect after authentication

Hi, How do I set a redirect url for FB.login? I already have this in to render the login popup: function fbLogin () { FB.login(function(response) { if (response.session) { if (response.perms) { window.location = "redirect_url_here" } else { // user is logged in, but did not grant any permi...

Facebook PHP SDK - maintaining a session

I've been playing around with the Facebook PHP SDK for a site that I'd like to use Facebook's single sign in for. I've been able to login to my Facebook account from my site and successfully tested a few of the features (posting to /me, an FQL query etc.). When generating the login URL I have set the cookie parameter to true, however I ...

Is there no longer a connect URL for using the Facebook Javascript SDK

Its quite possible I'm missing something obvious here; I hope so. I have been trying to get a Facebook game that posts to the user's wall after the game has finished working. As I understand it, this should be a pretty simple process (and there appears to be several different approaches). I have tried most of these, and they all seem t...

I can't log out in website developing with wordpress and facebook connect

I was using facebook connect in my website(CMS-Wordpress). The problem what I'm facing is user can't logout after logged in. It drives me crazy. Anybody got that problem and how fixed it? Let me share your experience. ...

How do I access a Facebook users details with their login credentials?

I have a site where users can register an account. To do this they have to enter various details about themselves (Name, DOB, Email Address, Password, Username etc..). However, I would like them to just have to enter their Facebook username/password, and have all this information pulled from their Facebook user account. How is this pos...

Cannot connect to Facebook Connect

Hi, I'm using the following step by step guide to connect to Facebook Connect: http://msdn.microsoft.com/en-us/windows/ee702803.aspx However I have a problem at the 'Authentication and Initiating a Session' stage. When I go through the steps, I click on 'Connect' in my browser, which opens a popup, where I login to Facebook and 'Allo...

Facebook Integration for iOS4

Hi all, i want to add the ability to post to the facebook wall trough my iPhone app. I found various possibilities to do that, but which one is the best and shortest for iOS4? And do I need UIWebView? Thanks mat ...

Facebook Connect - Single Sign On Causes Infinite Loop :(

Hi Guys, I have a Facebook Connect (FBML) web application that has been live for a while now. All is working well, however user's are reporting issues with the single sign on (and i have seen the issue on their computer, but have not been able to replicate locally). With FBC, there is a "event" you can hook into to automatically dete...

Facebook Javascript API throws this error: "An error occurred with Mu Console. Please try again later" Any ideas?

I downloaded the official facebook Javascript SDK from http://github.com/facebook/connect-js and it seems that, for some reason, it outputs the above error. The strange thing is that it worked 2 days ago. Now I'm quite stuck. I tried with different API_KEYs and still got nothing. I'm running the examples inside my Apache Server. Do yo...

on facebook connect login uri, can I add an extra get param on url, and have that passed to my script once user logs in?

Hi there, to connect to an app on facebook, the user types in www.facebook.com/login.php?api=12312312323123123 how can I add an extra get var to this url and pass it to my script on successful login? ...

FB.getLoginStatus always returns null regardless if user is logged into FB

I'm trying to see if a user is logged into FB on my website. I have the following code below but regardless if I'm logged into my FB account or not the FB.getLoginStatus response is always returning null. <script type="text/javascript"> window.fbAsyncInit = function() { FB.init({appId: 'XXXXXXXXXXXXXXX', status: true, cookie: true, ...

Next is not defined for a facebook application.

Hi, I am trying to implement Facebook Connect with the new facebook connect.js1. I am following "Single Sign-on with the JavaScript SDK" documented at: http://developers.facebook.com/docs/authentication I Initialized connect.js like following: <div id="fb-root"></div> <script language="JavaScript" type="text/javascript"> wi...

Facebook application suddenly displays a blank white screen

Hi folks, I am just learning myself facebook programming. To start with I am just fetching friends name and likes of friends. Till yesterday, my application was working fine and all echoes in my PHP code were working fine. Suddenly from last night I am just getting a white screen with nothing inside, except the Facebook's stuff around ...

Manage Facebook Page tab apps via Open Graph API?

I have been investigating the Facebook Open Graph API. There is a "manage pages" extended permission which allows publishing to a user's Facebook Page news feed/wall via "impersonation". This is nice functionality, but is there anything more you can do through the API? Specifically, I would like to be able to Add or Remove a "Tab" appli...

Facebook Login/Like Fail on IE8

I've recently implemented Facebook Login button and a Facebook "Like" button using XFBML. You can see the site on http://colnect.com Everything works well with FireFox, Chrome, Opera & Safari. However, IE doesn't show neither "login" or "like" buttons and no error message is available as well. Any ideas? ...

Facebook Connect require login for some links

Hi, Is there any fb tag i can use to wrap around my html anchor tag so that if the user isn't logged in, they will get prompted to login before getting access to the link? I'm using python/django in backend. Thanks, David ...

fb.login seems to cause page reload

I'm using the javascript sdk for facebook. I have a my own site specific "like" button, but want to check if the user is logged in before sending the request to the server. I used the fb.login() function as follows but whenever it gets called the page the "like" button is refreshed. Why does it get refreshed? $('#like_id').cl...