Osclass - Social Login
private static function doLogin($user_id) $user = User::newInstance()->findByPrimaryKey($user_id); Session::newInstance()->_set('userId', $user['pk_i_id']); Session::newInstance()->_set('userName', $user['s_name']); Session::newInstance()->_set('userEmail', $user['s_email']); Session::newInstance()->_set('b_moderator', $user['b_moderator']); Session::newInstance()->_set('b_admin', $user['b_admin']);
As Osclass continues to evolve—especially within the "Osclass Club" and fork communities like OsclassPoint or Madhouse Creations—social login is becoming standard infrastructure rather than a luxury add-on.
Table_title: General osclass questions Table_content: row: | | General discussion Questions on osclass script itself, problems wit... OsclassPoint Login & Social Osclass plugins | OsclassPoint Enable power of social networks to your osclass clasifieds and let users login much faster and easier then ever before. Authentica... OsclassPoint Login & Social Osclass plugins | Page 2 - OsclassPoint * Registered Users Only Osclass Plugin Login & Social. Free download. 5.0 (1) v1.1.0. Would you like to enable your classifieds we... OsclassPoint How to login using Social Auth (Facebook, Google, Twitter ...) Choose API Permissions -> OpenID Connect Permissions. 6. Go to your panel, Settings -> Plugins, enable Social Auth, click Save and... Yclas.com Authenticate Osclass Social Login Plugin - Support Forums Authenticate Osclass Social Login Plugin * Support Forums - Classified Ads Script Osclass. * Osclass plugin support. * Authenticat... OsclassPoint 9 sites Social Connect a free plugin for osclass, which allow ... - GitHub Installation. Simply clone the repo, copy fk_social_connect folder to your osclass plugins folder. Path: your-path/oc-content/pl... GitHub Facebook Login Osclass Plugin - OsclassPoint Jan 15, 2026 — osclass social login
: A free, open-source alternative. While it requires a bit more manual configuration (like adding PHP hooks to your theme files), it provides a solid foundation for basic Facebook and Google integration. Common Setup Steps
For site owners, the decision is rarely binary. The most robust setups are : Authentica
try $access_token = $helper->getAccessToken(); $response = $fb->get('/me?fields=id,name,email', $access_token); $user = $response->getGraphUser();
composer require google/apiclient
Since the deprecation of Facebook’s Graph API older versions, many older Osclass social login plugins stopped working. It is crucial for administrators to ensure they are using updated plugins compatible with the latest OAuth standards to avoid security vulnerabilities or login failures.