PHPackages                             vavprog/socialite-autodesk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. vavprog/socialite-autodesk

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

vavprog/socialite-autodesk
==========================

Autodesk OAuth2 Provider for Laravel Socialite

014PHP

Since Jan 20Pushed 7y ago1 watchersCompare

[ Source](https://github.com/vavprog/socialite-autodesk)[ Packagist](https://packagist.org/packages/vavprog/socialite-autodesk)[ RSS](/packages/vavprog-socialite-autodesk/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Autodesk OAuth2 Provider for Laravel Socialite
==============================================

[](#autodesk-oauth2-provider-for-laravel-socialite)

### 1. Installation

[](#1-installation)

`composer require vavprog/socialite-autodesk`

### 2. Service Provider

[](#2-service-provider)

- Remove `Laravel\Socialite\SocialiteServiceProvider` from your `providers[]` array in `config\app.php` if you have added it already.
- Add `SocialiteProviders\Manager\ServiceProvider` to your `providers[]` array in `config\app.php`.

For example:

```
'providers' => [
    // a whole bunch of providers
    // remove 'Laravel\Socialite\SocialiteServiceProvider',
    SocialiteProviders\Manager\ServiceProvider::class, // add
];
```

- Note: If you would like to use the Socialite Facade, you need to [install it](http://laravel.com/docs/5.2/authentication#social-authentication).

### 3. Add the Event and Listeners

[](#3-add-the-event-and-listeners)

- Add `SocialiteProviders\Manager\SocialiteWasCalled::class` event to your `listen[]` array in `/Providers/EventServiceProvider`.
- Add your listeners (i.e. the ones from the providers) to the `SocialiteProviders\Manager\SocialiteWasCalled[]` that you just created.
- The listener that you add for this provider is `Vavprog\SocialiteProviders\Autodesk\AutodeskExtendSocialite::class`.
- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

For example:

```
/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
    SocialiteProviders\Manager\SocialiteWasCalled::class => [
        Vavprog\SocialiteProviders\Autodesk\AutodeskExtendSocialite::class
    ],
];
```

### 4. Services Array and .env

[](#4-services-array-and-env)

Add to `config/services.php`:

```
'autodesk' => [
        'client_id' => env('AUTODESK_KEY'),
        'client_secret' => env('AUTODESK_SECRET'),
        'redirect_uri' => env('AUTODESK_REDIRECT_URI'),
    ],
```

Append provider values to your `.env` file:

```
// other values above
AUTODESK_KEY=your_app_id_for_the_service
AUTODESK_SECRET=your_app_secret_for_the_service
AUTODESK_REDIRECT_URI=https://example.com/login

```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/02ed0e2ae06c067fd7d5e9ce08e4764099f177540c3a4db2b01035bd3ee0480b?d=identicon)[vavprog](/maintainers/vavprog)

### Embed Badge

![Health badge](/badges/vavprog-socialite-autodesk/health.svg)

```
[![Health](https://phpackages.com/badges/vavprog-socialite-autodesk/health.svg)](https://phpackages.com/packages/vavprog-socialite-autodesk)
```

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M101](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
