× Joomla Facebook Connect support forum

Topic-icon Redirecting members not accept the authorization Apllication worm

Active Subscriptions:

None
Hello, I redirected shouaiterai facebook members who have not yet rejoitn worm my application the application for leave that and you it possible?

My website : alexer-florent.com/apps5
Apps iframe fb : apps.facebook.com/gagneuniphone/

Register user >> autologin
No users >> authorization page facebook
Users not login in facebook >> login page facebook

* ps I use on my site only has facebook
With automatic enrollment
The topic has been locked.
Support Specialist
I'm not sure what you are looking for.

If you only want Facebook users to be able to log into your site, you should set the "User Creation" setting in JFBConnect to "Facebook User Only". That should do what you're looking for.

I hope I answered your question, but if not, let me know.
The topic has been locked.
Active Subscriptions:

None
I have already configured their enfaite! His walk but I would be worth bypassed or new users must click the connect button with facebook !
The topic has been locked.
Support Specialist
I'm sorry, I still don't understand what you're looking for. It seems you want to skip registration for some users, but I think I'm just missing it.

Can you try posting your question in French (I think that's your native language). We'll try using Google Translate to see if that can help interpret better.

Thank you
The topic has been locked.
Active Subscriptions:

None
Enfaite je shouaite que les visiteurs qui arrive sur mon application soie redirigé s'il ne sont pas inscript ver la demande des autorisation sans cliqué sur le bouton " connexion avec facebook"

Je veux que les utilisateur qui n'ont pas rejoint mon application soie redirigé ver cette page :

File Attachment:
The topic has been locked.
Active Subscriptions:

None
HELP ME PLEASE !!
The topic has been locked.
Support Specialist
It's not possible to force users to register through Facebook right now. In the 3.2 release, you should be able to add a check to see if the user is registered through Facebook, and if not, call the Javascript function
jfbc.login.login_custom();

That will pop up the authentication box. You still won't be able to require them to login through Facebook though.

3.2 will be available tomorrow.

Hope this helps. If not, please let us know.
The topic has been locked.
Active Subscriptions:

None
oui et-il possible pour vous de me devellopé cette fonction ?

C'est exactement ce que je veux !
The topic has been locked.
Support Specialist
Yes. Try the following code in a Javascript block:
[Posted below]

We haven't tried this exact functionality. Let us know if you run into issues, and good luck!
The topic has been locked.
Support Specialist
< script type="text/javascript" >
window.addEvent('domready',function(){
  jfbc.login.login_custom();
}
< /script>[code]

If you have the ability to add it in a PHP block, we'd recommend the following, which will check if a user is already logged in:
[code]< ? php 
$user =& JFactory::getUser();
if ($user->guest) { ? >
< script type="text/javascript" >
window.addEvent('domready',function(){
  jfbc.login.login_custom();
}
< /script>
< ? php } ? >
The topic has been locked.