I was using the code below to delete cookies and everything worked fine.
A few days ago, I began hosting the code somewhere else and it will not longer delete the cookie.
Any ideas?
if( $_COOKIE )
{
foreach( $_COOKIE as $name => $value )
{
$params = session_get_cookie_params();
unset($_COOKIE[$name]);
...
I am wanting to add some extended permissions to django-facebookconnect namely "email". After looking through the code I see that the actual connect is managed in javascript. So, I thought that something like this might work
{% load facebook_tags %}
<script type="text/javascript">
FB_RequireFeatures(["XFBML"], function() {
F...
Hi Everyone,
until lately my application was working great with facebook connect.
When you click on the "login with facebook" button the popup shows up, and clicking allow does half it's job:
Facebook connects to my secret controller that I set up in the Post-Authorize Callback URL
but instead of closing the popup and redirecting the us...
Hi,
I have an Iphone app. I am using facebook connect when for user authentication.
I am sending score and fbuser Id to my web server. How can I validation this user valid or not?
Thanks
...
I would like to use exactly same search box in my app, (to search ppl and saw her profile picture). Is there any good example how to do it?
...
How to people go about managing users when some people login via facebook connect (or openid etc) and other members who actually register on the website.
From what I understand, those logging in via facebook connect will have limited data like just their username correct? You won't have even their email addy.
...
When I ask for email permissions, my facebook popup window redirects to my site in its own window, whereas if I do not ask for email permissions the facebook window closes and my site redirects as normal... so asking for email seems to make something go wrong. I see this in myserver logs:
makes this appear in my server logs:
Completed ...
I'm not sure if this is possible but using Facebook Connect for iPhone, can you request to like a facebook page? If this means showing the FB dialog box that is fine!
Many thanks
...
I have a Facebook connect setup which signs the user in using FB.Connect.requireSession(), and gets some permissions using FB.Connect.showPermissionDialog()
The problem: when the user adds my application for the first time, instead of closing the FB Connect window and setting cookies, it loads the "post-add URL" in the FB connect popup ...
Hey,
I have some doubt, about FB Log in system integration in my website , how can i use it??
Like am i need to save anything in my db, more over how can i get a sample code in PHP?
...
Hey all,
I've been playing with Facebook Connect for iPhone recently and got it working great. Except for one thing. As you can see in the image (which shows just before loading the log in screen), there is a hideous black area on the right hand side.
Do anyone know why this happens and how to fix it? I can only think that I may have t...
Hi,
I'm creating a new site and I want the users to be able to use several ways to sign in, basically the users should be able to create a new user on my site OR use Facebook connect OR use Twitter's account to log into the site.
I have seen several tutorials on using one of these methods, what I want to know is what do you think is th...
Facebook Connect has a recent bug that is causing the permissions pop-up window to not close and refresh the parent window as it is designed to do. Instead, after approval by the user it attempts to load the page directly in the pop-up window which is an awful user experience and really hurting our registrations. You can see the bug by r...
For example i would like to achieve https://graph.facebook.com/search?q=mark&type=user ,
and I am trying:
FB.api('/search?q=mark&type=user', function(response){
for(x in response) alert(x);
});
}
Please, help!
...
Hi Guys,
I have a ASP.NET web site which uses Facebook Connect for authentication - using the JavaScript API and the Facebook Connect FBML Button.
Here is the regular flow of events for a "Connect with Facebook" button click, when user isnt logged into Facebook.
Dialog is shown requesting user to login
Dialog requests permission from...
I have an issue with the old sdk. Whenever I try to authorize a new user I get redirected to the home page of my app in the iframe. However, after I close the iframe and refresh the page, I can easily authorize a user.
But whenever I delete the application from my facebook account and try to authorize it, I'm back to the previous proble...
Hi guys,
I want to build an XMPP client on android, I've got it running perfect with authentication using Digest-MD-5, however when I try to convert it to X-FACEBOOK-PLATFORM it keeps failing. Could someone tell me why? I've attached the source code. I know it's something really small but I can't seem to figure it out.
The source can ...
Those are basically the questions because I saw you need to create a new table for users that log using "Login with Facebook Connect". Please don't reply with fb connect developers website because I've been there already and I've already read about the "wonderfully unsafe" features of this API .Apparently I haven't fully understood it. I...
Hi!
I am developing facebook app which needs to retrieve events created by some of my friends.
Standard SQL query would look like this:
NSString *fql1 = @"SELECT "
@"eid, name, tagline, id, pic_small,host, description, start_time, creator "
@"FROM "
@"event "
@"WHERE "
@"creator = 1111111111 OR creator = 2222222222 OR creator = 33...
Hi Folks
I am using the following 2 API's to create a facebook connect but having issues with the sessions being picked up the the PHP SDK. I have downloaded the latest facebook-connect-js & facebook-php-sdk
Here is my initial FB.init connect using the JS no problem ie.
<script>
// initialize the library with the API key
FB.init({...