Hi,
i know facebook offers the UserID inside a facebook application-tab after the first "click".
But doest anyone have an example (fbjs/fbml) how this work in detail?
I am using Facebook Python's SDK along with Google App Engine, and making a call to do a checkin:
graph.put_object("me", "checkins", message="Hello, world", place="165039136840558", coordinates='{"latitude":"38.2454064", "longitude":"-122.0434404"}')
However, this throws an error 400 Bad Request and I don't seem to be able to try catch it so I can have the important information.
On a bad request, Facebook should return, an object like below which can help troubleshoot and address the issue, but I am not sure how I can retrieve this object:
{
"error": {
"type" : "OAuthException",
"message" : "An active access token must be used to query information about the current user."
}
}
On Androids Facebook SDK there is a single login feature which I can't get to work.
Done all the key hash thing but maybe there is something wrong with this method.
What exactly should I pass on, or could somebody explain what this is supposed to do?
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
facebook.authorizeCallback(requestCode, resultCode, data);
}
Does Facebook provide a URL the user can access that will take him to his profile page with the "What's on your mind" box auto completed with a value provided in the URL? I need something like "http://facebook.com?status=This is my new status message".
i'm able to successfully integrate facebook into my iphone application.
but just before publishing, it will show a dialog which is an instance of "FBStreamDialog".
I'm only setting "userMessagePrompt" which is "Share the app with Facebook and follow the link to obtain the app" and "attachment" with "Share the app".
When the app is run and when FBStreamDialog is shown, I'm seeing only "attachment" and not "userMessagePrompt".
Why?
I am trying to use facebook API and some functions/objects used in tutorials are NOT defined in facebook.php (downloaded from github.com).
Am I so silly or is there some other think I should know?
Thanks for help,
Roman
hi, we are working on a web site that getting users' friends and users' feeds. Users can register via facebookconnect. but we want to take user's feeds at any time. is that possible ? can we take feed information from facebook without user login.
Hi,
I have implemented FacebookConnect in my iPhone project and it is working great. The only problem I have is that every time the user closes the app, the next time they load it they have to re-enter their username and password to login even if the 'keep me logged in' box is checked.
My question is is there a way to save the user's session so next time the app is launched they are automatically logged into FacebookConnect without any prompts?
Thanks!
Hi,
I have set up my app to connect to the facebook,
Now I want to display the friendlist, how am i proceed once I have connected the app to the facebook?
Hey guys and gals,
Any one knows of an easy to use/well documented Facebook library for VB.NET?
I have searched the Interwebs for it for a long time and even the official one has a very poor documentation for beginners. It looks like you have to be a Facebook developer to work with them.
Any help is much appreciated.
Thanks!
Hey guys, this is more of a question out of curiosity, but is it possible to get somebody's Facebook page after they have visited your site?
Was thinking maybe a chain of lookup stuff could be used starting with an IP to eventually perhaps get a name and thus that person's Facebook page. I have also heard you can read somebody's web history, is this true?
While surfing facebook and using the Firebug network debugger I noticed that facebook's AJAX responses all start with an empty for loop.
Example:
for(;;);{...}
Does anyone know why this is done? I assume it's to prevent some sort of XSS attack but I don't totally understand. Thanks!
Basically, I'd like to know how I can logout of my facebook session if I am in an iphone app and have connected to facebook (such that I do not have to repeatedly enter my login/password). Normally you'd disconnect in the app somewhere like in the options, but if this is not available (i.e. anything that triggers the FBSession logout method) is there some other way to do it?
I'm guessing one could restore their phone to factory settings or something.
Why is the height of my Facebook Like button (technically the iframe that gets generated) always getting set to 80px? Example page is here: http://www.davidkasper.net/test.html I am using the javascript sdk and have had it work on other pages but for some reason the height will not change dynamically on this one! I can even do something like
<fb:like style="height:40px">
and that will indeed set the visible height, but the iframe will still be 80px, whereas I can see it changing in the demo at http://developers.facebook.com/docs/reference/plugins/like
Hi,
I am developing a iPhone application that uses Facebook APIs.
Which API should I use for incrementing the like count of a Facebook page?
Thanks and regards,
Deepa
I am goign to start mucking around with a facebook app.
You are spposed to be able to test code here http://developers.facebook.com/tools.php but that url is a 404. Does anyone know if the Test Console still exists?
Hi guy,
I create a group on facebook and I would like to know how I can send me a email when a user post on the group wall.
I search on facebook api but I found nohting.
Thanks for your help.
Hi,
I have a Facebook application with which my users can post and friends can view in their news feed.
I would like to know how many people have seen, or maybe even interacted or "liked" the posts my users posted using my application.
Does Facebook give such statistics? Is there any other way to know it?
Thanks.
require_login($required_permissions = 'email,photo_upload');
$auth= $facebook-do_get_session($_GET['auth_token']);
$facebook-set_user($s['uid'], $s['session_key'], $s['expires'], $s['secret'])
?
when ever i tries to login into my app it just refreshed and refresh with wih different auth_tokens.
please help
is there a demo for the FanBox?
http://wiki.developers.facebook.com/index.php/Fan_Box
I would like to include it in a design for a client which doesn't have a facebook fanpage yet.
Hello Folks,
I am trying to develop a application where
The user 'X' has logged into Facebook
app has a set of email addresses (possible friends of user 'X')
app gets the list of friends of user 'X' (uids)
Want to check if user with email address [email protected] is a valid facebook user by using email address and is user X's friend (basically a uid to email mapping)
Thanks!
I have to develop Facebook app and put it into custom made facebook page as a side widget.
what are alternatives on customizing Fan page (one I googled is through static FBML - FBML)?
also I need to provide backend part in clients site so banner in the page can be changed from there. considering this I assume the "static FBML" is not an option right ?
anyhow any directions would be much appreciated
Is it possible to pull the information on someone viewing someone else's profile? Would that app be leagal on Facebook? There are lot of "fake" apps like that exist now on Facebook. But can that be done really?
I'm building an Android application where I want users to connect by their facebook details.
According to my design, when the application starts first time, I want to display a layout with LOGIN facebook button. After the user will perform login for the first time, I dont want to display this layout/activity again - when the application would be relanched, I want t display another (home) screen, and not the LOGIN one. How should I implement this functionality?
Thanks
I need to be able to get the latest facebook status update of an user that has allowed consent.
Is there a way to do this with pyfacebook without having to have the user login in facebook?