facebook-connect

Facebook Connect with ASP.NET using Facebook Toolkit

I have done the following steps here http://wiki.developers.facebook.com/index.php/How_Connect_Authentication_Works but I'm stuck at number 8. I've added the DLL's but for some reason this line: API api = new API(); always comes up with this error: Compiler Error Message: CS0246: The type or namespace name 'API' could not be ...

users.setStatus - Adding emoticons or images to a Users Status

Hello, As seen in this example: http://apps.facebook.com/status-emoticon/ The application in question uses 'users.setStatus' to allow the publishing of small emoticons to the users status. The images are added to the post using colon tags which act similarly to BBCode. How exactly is the application doing this? I would like to replica...

Is it possible to express "Like" on a Facebook album picture outside Facebook himself using API?

Hi all! I've tried in vain to manage how to adapt the Like Button Plugin found at http://developers.facebook.com/docs/reference/plugins/like trying to make it works in do-like action on a picture instead of a page. Can someone kindly tell if is this possible via the Open Graph protocol and metatags to like an album picture published ...

How to use Facebook authentication return "session" parameter?

After successful authentication, Facebook redirects me to the canvas callback url with the parameter installed and session. the session parameter is like this... &session= {%22session_key%22%3A%222.cQWUqNcffzsWReDAcctOmA__.3600.1281524400-100000327994753%22%2C%22uid%22%3A100000327994753%2C%22expires%22%3A1281524400%2C%22secret%22%3A...

Facebook - assign username to a variable by calling FB.Facebook.apiClient.users_getInfo()

I am developing a facebook app and I seem to have got stuck on an issue. I am trying to assign the username to a variable by calling the below code, but the variable is returning null. var current_user =''; var arUser = FB.Connect.get_loggedInUser(); FB.Facebook.apiClient.users_getInfo(arUser, ["name"], function (user, exec) { //...

How to tag photos in facebook-api?

Hey, I wanted to ask if/how is it possible to tag a photo using the FB API (Graph or REST). I've managed to create an album and also to upload a photo in it, but I stuck on tagging. I've got the permissions and the correct session key. My code until now: try { $uid = $facebook->getUser(); $me = $facebook->ap...

Best way to Facebook Connect on page load?

I'm running a facebook Connect site where I use Connect for authentication. I check if the user is connected through facebook on every page so that I can quickly authenticate them if they are registered. I think that my current way of doing this may be bad, because the page "hiccups" whenever it loads in users from facebook connect. T...

How to get the pid from this FB Script?

I have coded this little script, which upload a photo (images/hand.jpg) into a users profile in the default application album (in the app-album from witch im calling this script). Now i have a problem. I would like to get the unique pid (picture id) of the just uploaded photo. When I try to echo $data, there is a int like this: 120629...

Facebook: Using the like button with a facebook photo

These sorts of facebook problems often become tumble weeds, but I thought I'd try anyway. I'm wanting to create a facebook photo vote app with facebook connect. Photos in a certain facebook gallery will be displayed on a website with a like button next to it. They will be ordered by their number of likes. I'm having trouble with the li...

Does the Facebook Connect oauth access_token reliably contain the facebook user id?

I have a facebook connect app all set up using oauth and after the final transaction I receive an access_token that looks something like - 559514387926|f53be3fc76b8e243aaf2944b-502835064|moXh_HOIga8b32txRdwkan-5NW9. The part in bold seems to be facebook user id of the current user. I checked this with all the access_tokens of the users...

Uploading pictures to Facebook from iphone app

Hi. I'm currently using facebook to post text in the user's wall. I'm wondering if it's possible to post pictures, such as screenshots from my app for example, in the posts, because someone explained me that currently it's only possible to attach pictures from an URL to the post, and not any picture from the iphone. It's also possible ...

$facebook->get_loggedin_user() returns ID even when logged out

What's causing this and what can I do to prevent it? I've seen a hack for solving this described here, but I'm wondering if there's a solution that actually gets to the root of the problem. ...

facebook set_status facebook api

I have $facebook->api_client->status_set('is the Eagle has landed.',''); as part of a test page, and i get errors Call to undefined method FacebookRestClient::status_set() please help, thank you ...

facebook connect is working only if re-permitting permissions

Hey! I have a web page with Facebook connect. Today i've checked it after a few days it was working, and i found out that if i connect using a username that didnt have permissions to my app, and he authorize them - he gets authorized. if he connected again (with permissions already added) - i can't recognize his had authorized my app!!...

how to refresh the page after successful fbconnect login

Hi, I am trying to run the basic fb connect example provided here http://developers.facebook.com/docs/guides/web#login Everything works fine except page does not gets refreshes after log in. How can I achieve that? ...

Working with Facebook Connect.

Hello, I have two files with identical code (it is the code they mention here: http://developers.facebook.com/blog/post/198). I have one of these files here: http://gnucom.cc/test.html and another one of these files here: http://blog.gnucom.cc/test.html. I have the main URL set to gnucom.cc and the Connect URL set to http://blog.gnu...

Facebook Connect doesn't redirect upon login.

Hey all, I know this is a question that has been asked several times, but I'm receiving an error that I haven't found any documentation on and am not making any progress on this. I have the Facebook Connect feature working on my blog, however, not everything is working. Upon clicking the 'Login' button a popup is displayed that allows...

Using the facebook connect JavaScriptSDK redirecting to port :8000

I'm running a Django server on localhost:8000/ and have the facebook callback URL set to exactly that "http://localhost:8000/" however, when I log in, it redirects to "http://localhost/". Is there a way around this? What am I doing wrong? ...

How can I display the latest activity for my Facebook group's wall on my website using php?

Sample code is appreciated. Thank you. ...

How does Facebook set Cookies with FB Init call in "Facebook Connect" setup?

Two part question: I have setup my website to use Facebook Connect for logging in. In the restricted area, I check if there is a cookie set with the name, "fbs_" under my domain name. However, I do not understand how this cookie gets set under my domain name. Does anyone know what happens with FB.Init call in this regard? (I have not us...