datatable.directory codebase
				https://datatable.directory/
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							46 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							46 lines
						
					
					
						
							1.5 KiB
						
					
					
				<?php
 | 
						|
 | 
						|
use App\User;
 | 
						|
 | 
						|
return [
 | 
						|
    'model' => User::class,
 | 
						|
    'table' => 'oauth_identities',
 | 
						|
    'providers' => [
 | 
						|
        'facebook' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/facebook/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
        'google' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/google/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
        'github' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/github/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
        'linkedin' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/linkedin/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
        'instagram' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/instagram/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
        'soundcloud' => [
 | 
						|
            'client_id' => '12345678',
 | 
						|
            'client_secret' => 'y0ur53cr374ppk3y',
 | 
						|
            'redirect_uri' => 'https://example.com/your/soundcloud/redirect',
 | 
						|
            'scope' => [],
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 | 
						|
 |