facebook

Facebook API: Can it access "notes"?

Before I pursue this, I would first like to know if it's possible. So, does anyone know if I can do this with the facebook Api: Access the "notes" application Retrieve the text in the note Retrieve the comments written on the note Retrieve the details (username and ID) of the person who wrote the note Anyone? ...

Facebook API and Drupal

I'm trying to use the drupal module called FB (http://drupal.org/project/fb). I just want to know if I'm on the right track. I've installed the module, setup the keys and so forth. All I want is the following: To make a call into facebook Retrieve all MY notes Retrieve all the COMMENTS on my notes So my questions are: Is it necessa...

Facebook Connect response ignoring 'next' parameter

I'm using the Facebook connect login API for desktop apps presented here: http://wiki.developers.facebook.com/index.php/Authorization%5Fand%5FAuthentication%5Ffor%5FDesktop%5FApplications I'm finding that the parameters I pass arent working correctly. Here's an example of the URL I use for the site: http://www.facebook.com/login.php...

Facebook API: Authorizing yourself (without logging in)

I simply wish to access my own personal profile, and get access to all my notes. In order to do this, I DON'T want to have to login each time via the Facebook frontend, as I know the password. $user = $facebook->require_login(); Not what I want. I want to login straight away, without the need of typing in anything. For example: $use...

Facebook: Getting comments of notes.

You can get notes using "notes_get". And you get comments using "comments_get" if you know the id of the comment. But how do you get all the comments of a note? or, actually, how do you get a list of all the comment id's posted to a note? ...

How to create a Facebook-style Thumbnail Selector using .Net

I'm looking at implementing a Facebook-style thumbnail creator using ASP.Net MVC but haven't a clue where to start. The feature in question is most easily-recognised when you upload a new profile picture. After uploading the image, you are presented with a frame that you can drag around the image to select the area that will appear as ...

Multi-friend select not sending invites via email

Hi, I have an iframe application with an invite functionality. When i type email in the Invite by E-mail Address box and click send invitation the email is not sent to the person. I am using the code available on the click here Please help me on this. Thanks ...

Facebook app iframe + JS Facebook.init + IE7 + Flash9 sandbox error

During facebook iframe application integration I ask for publish permissions - I have HTML which loads JS Connect library and asks for permission dialog.. FB_RequireFeatures(["XFBML"], function(){ FB.Facebook.init("_MY_API_KEY", "MY_PATH/xd_receiver.htm"); FB.Connect.showPermissionDialog('publish_stream'); However in I...

How to import photos from Facebook?

I noticed when I visit photo printing websites, they ask you if you would like to import your photos from Facebook. How do they do it? Does Facebook provide API to import users' photos? I am mostly using PHP. ...

Deeplinking with SWFAddress and Facebook connect

After prompting the user for the login and submitting it's details, my application appears in the facebook lightbox instead of the browser window. This is not the case when I remove the SWFAddress params (all the info after the hash in the URL bar). Is it possible to tell the API to ignore the info after the hash or is there a way i can ...

How to delete photo in Facebook

I'm writing a small windows application what is used to sync the photo between Facebook and user computer, I would like to delete the photo too when I delete it in my computer side, but Facebook don't provide the delete function in his API. How can I achieve it? I saw Apple iPhoto can do it, is Apple using private interface? ...

Facebook Application Send Friend request using Faceboook Api

I want to send faebook friend invitation to some of our friends list with out using FBML tag ( I am writing code in asp.net using fbServices any one plz help that send friend request with out using fbml ags ...

Log user into facebook using session key from my Facebook app

I have a simple Desktop Facebook application that allows the user to retrieve some of their Facebook info(Written in Java). This info is then sent to their phone. When the user sees something of interest (e.g. new comment) in their phone's 'facebook-viewer' (JavaME) they can click to launch a browser and go to 'facebook.com' to view it...

Facebook Rights

Hi, I have started to look into if it is possible to use facebook connect as openid for my blog and some other pages. The only thing I am interested in is to know if a user is authorized by facebook and if so get some kind of id from that person (not required to be something that I can link to a person on facebook myself but that I can b...

Facebook access cookie

I can't understand why I can't access the cookies created by facebook connect. I am getting this error msg Notice: Undefined index:{api_key}_user in xxx My code is <?php error_reporting(E_ALL); ini_set("display_errors", 1); session_start(); echo $_SESSION['{api_key}_user']; When using the webdeveloper plugin in firefox I can see ...

Facebook wall's database structure

I need to create a wall system just like Facebook's (users can post messages, videos, images, events, etc...). Has anyone created something similar? How do you recommend me to prepare the database? ...

Facebook friend validation on an external website

I'm interested in using Facebook as a way to validate that someone is my friend on an external site, and based on that, show them special content. Inside Facebook, consider this scenario: I post photos and give permission to friends only Someone tries to view my photos by URL If that person is my friend, Facebook displays the photos. ...

Facebook Connect + MVC Model

Hey everyone, I am working on an ASP.NET MVC project and I am trying to get it integrated with facebook by using facebook connect API. Now, I am having a small problem in imagining how the conceptual layout would be. I am using the repository model in MVC, I have my own DB. I want to be able to fetch user’s information from FB, and may...

How to get invitation form of facebook in .net website?

I have created an website, In which i am using facebook connect and facebook.net library. Now i am able to post the comments,get user information.Now what i need to do is to get all the news feed on facebook using Stream.get method. How to use stream.get in .net website? How to get invitaion form in .net website? thanks and regards, ...

Facebook API - "All my likes" query

Is it possible to retrieve all the posts, user ever 'liked'? FQL? API? I could not find a way. FB gurus out there, your help would be appreciated. ...