facebook-connect

Trying to upload video to facebook using FBConnect for iPhone

Hello- I am working on an app which will upload videos to a Facebook users wall, however I have not had much success. I present an extended permissions dialog window, and then use the face.video.upload method call. In the debugger, it seems like each parameter is set correctly, however the ext permission dialog never completely displays,...

Fetching Facebook "likes" data from a user's profile using old rest api

Is it possible to fetch the "likes" data from a user's profile using the old rest api ? Specifically FB has launched this new "Likes" feature recently, where a user can Like a page, etc. This information is visible under the "interests and likes" section of the Info page of a user. I am looking for a way to fetch this information using ...

Facebook graph API and post-remove callback with the new Graph SDKs (PHP)

I can't find any documentation in the new Facebook Graph/Authorization API documentation about how to handle post-remove callbacks from the Facebook server. With the REST API, this page described how to handle this. Any ideas on how to do this with the new PHP SDK? Do we need to do the signature verification ourselves? What's the equi...

Facebook. Setting status using access token (offline access)

Hi. I am wondering how to set the status of a user who has allowed offline access permissions. I have the users ID and access token but can't figure out how to pass both to the function. Any ideas? ...

Facebook offline access. Updating status via cron job?

My users have allowed offline access. I have the infinite access token, but can't figure out how to update the status from a cron job. Any ideas? ...

Call to undefined method Facebook::setUser()

Anyone know if there is a new way in the new API to set the user? I'm getting the error, Call to undefined method Facebook::setUser(). I cant find anything on Google. ...

Offline Access. Verifying Access Token?

I have offline access to post on a users wall, but before I post, is it possible to check if I actually have permission i.e. by verifying the access token or by using another solution? Sometimes I am getting "Error processing Access Token" which makes me think the user has removed the application or denied access to post on their wall. ...

Tag photos outside Facebook using FBConnect and Wordpress?

Hi! I have downloaded a Wordpress plugin that enables facebook Connect in my site, allowing users to "comment out" and "like" the posts and photos. As most of users are already logged in facebook when they reach our site, is it possible to let them tag their friends in the photos, and save that information so people can later see the na...

sfFacebookConnectPlugin: Authentication problem

Hi overflowers, I try to get the sfFacebookConnectPlugin to run by following the tutorial on the symfony homepage. Everything seems well configured. But when I try to login with sfFacebookConnectAuth/signin. I get the form error "The username and/or password is invalid.". I even don't know where to start with the debugging. First Ste...

FaceBook Connect: Error logging in?

when i click the login button, i get the following javascript error: FB.getLoginStatus is not a function [Break on this error] FB.getLoginStatus(function(response) { here's my code: <script type="text/javascript"> <!-- $(document).load(function() { }); FB.init("56800990388df98bfe358812eb6caf3d", "xd_receiver.htm"); ...

Adding Facebook Connect to a CodeIgniter website

I'm having problems trying to connect my website to Facebook. What I would like it to do is allow users to augment their accounts by connecting them to Facebook (I do not need people to be able to login with Facebook, I am using OpenID instead). My website runs in the CodeIgniter framework. What I will do is remove everything that I've ...

Facebook Connect: How can I get a logged in user's info into a PHP object?

i have been working tirelessly just to get this working, but for some reason, in the following code: require_once 'facebook-php-sdk/src/facebook.php'; $facebook = new Facebook(FACEBOOK_API_KEY,FACEBOOK_SECRET); $fb_user = $facebook->getUser(); the variable $fb_user is always null! i was wondering what i am missing in order to get th...

How do I get the fan page id with the user id in the Facebook graph API?

Using the Facebook Graph API I need a way to get the fan page id using that page created "user id". Is it possible? ...

Remove Facebook Post with Connect

Hello all, I'm looking to be able to remove a post with Connect.js. This is what I've tried so far: FB.ui({ method: 'stream.remove', post_id: post_id }, function(response) { console.log(response); }); I get a '"stream.remove" is an unknown method.' which is correct because when you look in the ui_methods.js file for Connect.js onl...

Set Facebook Status with Facebook Graph API??

Hello. I would like to know how to set my status using the Facebook Graph API and PHP, may be with the CURL function?? Thanks!! ...

Can I upload video to Facebook from within an iPhone application?

In the past, I've been able to upload images and text to Facebook from within my iPhone application, but I have not been able to upload video. Does anyone know how to programmatically upload video to Facebook? ...

post message to users inbox in facebook

I am integrating facebook social plugin into our web site. I follow This guide line. But one of my requirement is that I should be able to post message to user’s inbox not to wall. Is it possible JavascriptSDK and GraphAPI? Thanks. ...

Facebook Login with Open Graph

//if user is logged in - do this function login() { FB.api('/me', function(response) { document.getElementById('fb-info-block').innerHTML = "Welcome, " + response.name + ".<br /><br />" + "<fb:like href = 'www.whitbreaddesign.com' show_faces = 'false' width = '100' action = 'like' colorscheme = 'light'></...

Facebook Login Limit

I'm building a page using Facebook Connect, and the interaction in relation to Login/Logout is quite complex. Thus, I have to test it quite a bit. However, Facebook likes to prevent my login after a particular number of attempts, especially if I've mistyped my password at any point. Does anybody out there know if there's a way to increa...

Migrated to Facebook Graph API - application broken now - cannot post to wall

Hey guys Yesterday I changed the application settings and enabled "New Data Permissions" and "New SDKs". After that the feature of posting message to the users wall stopped working. On my website, users login using facebook API (Graph) and are able to post messages on their wall. This is my old code that was working fine: function p...