generated from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from BRACKETS-by-TRIAD/feat/update-docs-before…
…-release-1.2.0 Feat/update docs before release 1.2.0
- Loading branch information
Showing
5 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import { Callout, Tabs, Tab } from "nextra-theme-docs"; | ||
|
||
# Social Login | ||
|
||
This feature empowers you to seamlessly integrate social login functionality into your application, enhancing user experience and engagement. Craftable PRO supports various popular social platforms, including Facebook, GitHub, Twitter, Apple, Google, and Microsoft, allowing your users to sign in using their preferred social accounts effortlessly. | ||
The functionality is powered by the [Laravel Socialite](https://laravel.com/docs/socialite) package and its extensive range of providers. | ||
|
||
## Getting Started | ||
|
||
To enable social login in your application, follow these simple steps: | ||
|
||
<div className="steps-container"> | ||
### Select which services you want to use and enable them in `config/craftable-pro.php`: | ||
```php filename="config/craftable-pro.php" | ||
'social_login' => [ | ||
'allowed_services' => [ | ||
'microsoft' => false, | ||
'github' => true, | ||
'google' => true, | ||
'twitter' => false, | ||
'facebook' => false, | ||
'apple' => false, | ||
], | ||
'self_registration' => [ | ||
// define if users can self register into craftable pro interface | ||
'enabled' => true, | ||
// and if enabled, then which role(s) they should have assigned by default. Use role names here. | ||
// It can be a string for one role or an array for multiple roles. | ||
'default_role' => 'Administrator', | ||
'allowed_domains' => ['craftable.pro'], // use * for allowing any domain | ||
] | ||
] | ||
``` | ||
### Social login self-registration | ||
When social login self-registration is enabled, users can register conveniently through various social logins. However, if disabled, users will only gain access to social login after a CraftableProUser instance has been generated for them in the Access tab. | ||
|
||
To permit registration for emails from any domain, adjust the configuration to `'allowed_domains' => ['*']`. | ||
To allow registration only for emails from a specific domain (e.g., @mydomain.com), modify the configuration to `'allowed_domains' => ['mydomain.com'].`" | ||
### Register event listeners for your enabled providers in `app/Providers/EventServiceProvider.php`: | ||
```text filename="app/Providers/EventServiceProvider.php" | ||
protected $listen = [ | ||
\SocialiteProviders\Manager\SocialiteWasCalled::class => [ | ||
\SocialiteProviders\Apple\MicrosoftExtendSocialite::class, | ||
\SocialiteProviders\Apple\GitHubExtendSocialite::class, | ||
\SocialiteProviders\Apple\TwitterExtendSocialite::class, | ||
\SocialiteProviders\Apple\FacebookExtendSocialite::class, | ||
\SocialiteProviders\Apple\GoogleExtendSocialite::class, | ||
\SocialiteProviders\Apple\AppleExtendSocialite::class, | ||
] | ||
]; | ||
``` | ||
### Get client credentials from the providers and put them in your `.env`: | ||
```php filename=".env" | ||
MICROSOFT_CLIENT_ID= | ||
MICROSOFT_CLIENT_SECRET= | ||
MICROSOFT_REDIRECT_URI="/admin/login/microsoft/callback" | ||
|
||
GITHUB_CLIENT_ID= | ||
GITHUB_CLIENT_SECRET= | ||
GITHUB_REDIRECT_URI="/admin/login/github/callback" | ||
|
||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= | ||
GOOGLE_REDIRECT_URL="/admin/login/google/callback" | ||
|
||
TWITTER_CLIENT_ID= | ||
TWITTER_CLIENT_SECRET= | ||
TWITTER_REDIRECT_URI="/admin/login/twitter/callback" | ||
|
||
FACEBOOK_CLIENT_ID= | ||
FACEBOOK_CLIENT_SECRET= | ||
FACEBOOK_REDIRECT_URI="/admin/login/facebook/callback" | ||
|
||
APPLE_CLIENT_ID= | ||
APPLE_CLIENT_SECRET= | ||
APPLE_REDIRECT_URI="/admin/login/apple/callback" | ||
``` | ||
</div> | ||
|
||
## Other providers | ||
|
||
To use another existing provider, check out the [Laravel Socialite](https://laravel.com/docs/socialite) or [Laravel Socialite Providers](https://socialiteproviders.com/) documentation. | ||
|
||
To create a new custom provider, follow the steps outlined [here](https://socialiteproviders.com/contribute/#creating-a-provider). | ||
To enable your new provider in Craftable Pro, don't forget to add it to the config: | ||
```php filename="config/craftable-pro.php" | ||
'social_login' => [ | ||
'allowed_services' => [ | ||
'myNewProvider' => true | ||
... | ||
], | ||
... | ||
] | ||
``` | ||
as well as to implement a login button for it on the login page. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.