Is there a standard Facebook Java Api?
Is there a standard implementation in Java for the Facebook Api? From what I read the http://code.google.com/p/facebook-java-api/ doesn't work. ...
Is there a standard implementation in Java for the Facebook Api? From what I read the http://code.google.com/p/facebook-java-api/ doesn't work. ...
I'm trying to connect to facebook to authenticate users but in facebook's login dialog I get the following message: An error occurred with . Please try again later. Any ideas what I might be doing wrong? ...
Is is possible to add parameters to fb:login-button in Facebook Connect? I would change the text in a more clear way for my target/demographic, who are not so geeky. ...
Hi guys, I am trying to figure out, how can I automatically submit a url at the following page http://www.facebook.com/sharer.php without actually clicking on the submit button. Thanks. ...
I am doing a website registration via facebook connect I want to access user's facebook pic via facebook connect. My problem is nt displaying the pic, bt trransterring the picture to own server, so it can be served from my server How can i go about it, solution plssssssssssssss ...
Hypothetically, suppose I wanted to produce an alternative user interface to Facebook. How complete could it be and what would be the most important features that couldn't be implemented? ...
I am using this gem, which is just a wrapper for the facebook graph API. I trying trying to post something to the logged in users facebook wall. This task seems easy enough but i am having these problems graph = HyperGraph.new("some token").get('me') => {:last_name=>"Jones", :updated_time=>Fri Aug 06 22:27:03 -0400 2010, :email=>"jones1...
Hi Facebook recently announced the ability to link a Like button to a Facebook Page. I've created a simple canvas application and successfully added a share button using FBML, how ever, i'm now required to insert a 'Like' button also (i know adding a like button is strange when there's a like button at the top of the page, but thats wh...
I am use following methods to upload photo : $args = array('message' => 'Photo Caption'); $args['image'] = '@' . realpath($file); $data = $facebook->api('me/photos', 'post', $args); print_r($data); After success to upload photo, $data return "Array ( [id] => 1.16874205038E+14 )". How can i access the photo on my apps? ...
Facebook.prototype.post = function(options) { var data = { access_token: this.data.token, // message: options.message, link: options.link, }; if (options.type == 'image') data.picture = options.image; var url = 'https://graph.facebook.com/me/feed'; if (options.friend !== undefined) url = 'https://graph.facebook.com/...
I am new to facebook development. I am using PHP-FBML with Graph API. Edited: Or can I use JQUERY with php-sdk(fbml, not iframe). If yes then how? Please someone help me out. ...
Recently I am working with a facebook application but anyhow facebook is not supporting form post with $_FILES, So that I can not upload any file with php regular file upload system. Now I am trying to use file uploading with file url location to upload it in a new created photo album. Is there any easy suggestion so user can upload pho...
Hello, I'm writing a Facebook Iframe canvas application using the Facebook Toolkit. There is a certain action where I need to store the date and time for the action, and in the future I want to render it for the user as a date and time like (10:05 AM 20 September 2010). The problem here is that each facebook user has his own local date...
I have a site with a webpage containing videos. example.com/foo.html -> Has swf video embedded via flashembed. When users share this link on Facebook, I want the video to be playable inline on Facebook. (WHich is what happens if it were a Youtube link.) There is some related discussion, but it seems to target FB app developers. http...
Hi , i made an applicaion on facebook.I have also option invite friend.It works fine but in friends invite link request, there come my picture.But i need that app picture instead of mine. Is there any way to show app image instead of those who send invitation ? Thank you ...
Hi, I've been banging my head against a wall with this one for way too long now. I have a page outside facebook, with a like-button. Because it should be on a public computer, we also need a visible logout-button. When "like" is clicked, the user is prompted for login credentials. If those are ok, the like-event goes through ok. The us...
How can i check if a user is a fan of a page in my application using facebook developer toolkit? (without getting the user_likes permission, i saw an application doing this, which only gets the default permission) ...
I changed my domain from abc.com to xyz.com. After that my facebook authentication is not working. It is throwing a key error KeyError: 'access_token'I am using python as my language. ...
I am trying to do a simple thing - get all my albums. the problem is that the album names are non-English ( they are in Hebrew ). The code that retrieves the albums : string query = "https://graph.facebook.com/me/albums?access_token=..."; string result = webClient.DownloadString(query); And this is how one of the returned albums lo...
I am woking on another project, and need to be able to create an online instant messenger that combines everybody's chat (Myspace, Facebook, Yahoo, AOL, Google , etc) into one in order to provide the user with an easy way to chat with all their friends and not have to download anything. I was thinking of doing this with PHP, but I'm not ...