Hi,
Is there a way or a link to a static image url to display the Facebook "Login with Facebook" button instead of the "Connect with Facebook" button? This seems to be the only link I can find for Connect with Facebook. I am able to generate a "Login with Facebook" button using FBML markup fb:login_button but in this case, I'm generatin...
Argg. I have a website, with Facebook connect on it. When a user submits a form they're given the option to submit to Facebook.
I have a Facebook application set up. When a user publishes it works fine. If a user decrees that my application cannot publish to Facebook anymore, then it throws an error.
Where do I tell users to go to reau...
I am working on an app that uses the Spring (Acegi) plugin for Grails. The plugin has facebook connect settings built in. I have followed the instructions to handle a facebook login within the app... however my knowledge of exactly whats going on is weak and what I really would like to do is give the user/visitor the option of either l...
Hello,
I am trying to set users status using my facebook application. However my
$uid = $facebook->require_login($required_permissions = 'email,status_update,offline_access');
gives me an infinite redirect which I am still trying to debug.
However, if I hard code the value of uid and then use
$facebook->api_client->users_set...
Hello,
I am getting an infinite loop in the URL redirect after a user either logs in or is already logged in. The page redirects to the login page if the user is not logged in as expected , but goes in the loop as soon as he enters the credentials.
Following is the code:
<?php
include_once ('facebook.php');
$api_key = 'xxxxxxxxxx...
I'm trying to put the Facebook Like button using xfbml in my Blogger blog. I want it to display a different button for each post, not the same for all the blog.
I've followed the guidelines in this link, among others: http://hitech-tips.blogspot.com/2010/05/facebook-like-button-xfbml-tutorial.html
What's happening is that the like butt...
I have implemented the following code below according to the documentation and can get it to connect and display user id...
<?php
define('FACEBOOK_APP_ID', '87939462878');
define('FACEBOOK_SECRET', '1ab6346bc51329831998985aba200935');
function get_facebook_cookie($app_id, $application_secret) {
$args = array();
parse_str(trim($_CO...
Hi there. I am trying to do something very simple - getting a 'photo' record for a given pid. I am using:
SELECT pid,aid,owner,src_small,src_small_height,src_small_width,src,src_height,src_width,src_big,src_big_width,src_big_height,link,caption,created,modified,object_id FROM photo WHERE pid = '2622555765931507709'
I always get an emp...
Hi All,
I have integrated Facebook connect in my iphone application.
when user clicks on a button i am calling a method which has the following code.
session1 = [[FBSession sessionForApplication:kApiKey secret:kApiSecret delegate:self] retain];
dialog = [[[FBLoginDialog alloc] initWithSession:session1] autorelease];
[dialog show];
w...
i am creating login code for facebook connect on our site,
however i cannot find how to check if the user has the required permissions.
with the old javascript, one dialog would be opened for each permission and the return code would say if the permission was accepted or not, how does it work with the javascript code?
here is the code ...
I managed to implement Facebook connect on my iPhone app and allow the user to upload a status update via the app. I now want to include a feature to allow uploading of photos together with a caption or status update. Does anyone know the relevant code for this?
I think I'm supposed to use the photos.upload API in FB but am not too sur...
Hi,
I have written a small piece to get the user to login :
<?php
include_once ('facebook.php');
$api_key = 'xxxxxxxxxxxxx';
$secret = 'xxxxxxxxxxxxx';
global $facebook;
$facebook = new Facebook($api_key, $secret);
$facebook->require_frame();
#Ask user to login if not logged in
$is_tab = isset($_POST['fb_sig_in_profile_t...
I'm new to iPhone programming and stumbled upon an answer to a question, but I was hoping someone could tell me why.
I'm using Facebook Connect in the app. Since my app requires a login, I was calling the login dialog programmatically rather than with a button. I am using the SDK example approved code:
FBLoginDialog* dialog = [[[FBLo...
hi all,
I am trying to integrate facebook in my iphone application. after logged in from my iphone I am getting response message as "application responce error"
can any one help out , why I am getting such an error???
thanks in advance...
...
Hi,
i am creating an iphone apps which need to use facebook login details to enter into the apps as Groupon iphone apps.
In Groupon, they are using FBConnect to access their facebook application, based on the login success they are allowing me to access their deals.
I had used FBConnect package to post some message to user's wall using...
Hi All,
Came into the office today to do some more work on my nearly completed Facebook Connect website application.
And i have discovered for some reason, the "onlogin" event of the fb:login button FBML control is no longer getting fired!!?!
To anyone else that has a Facebook Connect FBML app (and using the JavaScript API for authen...
I am building an iphone facebook app. The backend servers need the sessionSecret string.
Whether I login using FBLoginButton, or resume my sessions using [session resume], the value of both the sessionSecret and expirateDate are always nil.
Do I need to do something special to get this data? Is it not relevant and that's why I can't ha...
Hi.
Everything seems to be working fine with my implementation of Facebooker with Authlogic (using the authlogic_facebook_connect plugin) except for one thing.
After the initial authorization of the application (by clicking OK on the Facebook pop-up) I still remain on the login page. There is no redirection. However, once I refresh the...
Hi all,
I want to get users who allowed my application to get their facebook information.
Example: I have 60 persons allowed my application, Can I get information of list 60 person who allowed my application?
Can someone help me?
Thanks
...
Hi
For various reasons I'm serving my pages with the application/xhtml+xml content type (at least to browsers explicitly accepting that). This seems to break FB Connect, probably because it uses document.write() which isn't supported for that content type. Does anyone know of a workaround which makes FB Connect work with pages sent as a...