OAuth 2.0 / Social Login

Add-On

OAuth 2.0 client support for social login with Google, GitHub, and other identity providers.

Status
In Development
Supported Version
TBD
Licensing
Free
Usage Example

Here's how you'll use OAuth 2.0 / Social Login with Oorian once the extension is available:

Java
// Create and configure OAuth 2.0 / Social Login component
OAuth20SocialLogin component = new OAuth20SocialLogin();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, OAuth20SocialLoginEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.