PHPackages                             revolution/socialite-qiita - 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. revolution/socialite-qiita

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

revolution/socialite-qiita
==========================

Socialite for Qiita

1.4.2(2y ago)2526MITPHPPHP ^8.0

Since May 10Pushed 2y ago1 watchersCompare

[ Source](https://github.com/kawax/socialite-qiita)[ Packagist](https://packagist.org/packages/revolution/socialite-qiita)[ RSS](/packages/revolution-socialite-qiita/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (17)Used By (0)

Socialite for Qiita
===================

[](#socialite-for-qiita)

Requirements
------------

[](#requirements)

- PHP &gt;= 8.0

> No version restrictions. It may stop working in future versions.

Installation
------------

[](#installation)

```
composer require revolution/socialite-qiita

```

### config/services.php

[](#configservicesphp)

```
    'qiita' => [
        'client_id'     => env('QIITA_CLIENT_ID'),
        'client_secret' => env('QIITA_CLIENT_SECRET'),
        'redirect'      => env('QIITA_REDIRECT'),
    ],
```

### .env

[](#env)

```
QIITA_CLIENT_ID=
QIITA_CLIENT_SECRET=
QIITA_REDIRECT=

```

Usage
-----

[](#usage)

routes/web.php

```
Route::get('login', [SocialiteController::class, 'login']);
Route::get('callback', [SocialiteController::class, 'callback']);
```

SocialiteController

```
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Socialite;

class SocialiteController extends Controller
{
    public function login()
    {
        return Socialite::driver('qiita')->redirect();
    }

    public function callback()
    {
        $user = Socialite::driver('qiita')->user();
        dd($user);
    }
}
```

Scopes
------

[](#scopes)

```
    public function login()
    {
        return Socialite::driver('qiita')
                        ->scopes(['read_qiita_team', 'write_qiita_team'])
                        ->redirect();
    }
```

Demo
----

[](#demo)

LICENCE
-------

[](#licence)

MIT Copyright kawax

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 95.5% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~144 days

Recently: every ~373 days

Total

16

Last Release

768d ago

PHP version history (5 changes)1.0.0PHP &gt;=7.0.0

1.1.0PHP &gt;=7.1.3

1.2.0PHP ^7.2

1.2.2PHP ^7.2||^8.0

1.4.0PHP ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/77618633?v=4)[Revolution](/maintainers/revolution)[@Revolution](https://github.com/Revolution)

---

Top Contributors

[![kawax](https://avatars.githubusercontent.com/u/1502086?v=4)](https://github.com/kawax "kawax (21 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (1 commits)")

---

Tags

laravelsocialiteqiita

### Embed Badge

![Health badge](/badges/revolution-socialite-qiita/health.svg)

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

###  Alternatives

[socialiteproviders/manager

Easily add new or override built-in providers in Laravel Socialite.

42442.0M544](/packages/socialiteproviders-manager)[andrewdwallo/filament-companies

A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.

34450.0k2](/packages/andrewdwallo-filament-companies)[chrisreedio/socialment

Provides Socialite functionality for Filament.

10884.8k1](/packages/chrisreedio-socialment)[schedula/laravel-passport-socialite

The missing laravel passport feature for social authentication

4922.6k](/packages/schedula-laravel-passport-socialite)[revolution/socialite-mastodon

Socialite for Mastodon

13203.2k1](/packages/revolution-socialite-mastodon)[truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

1516.7k](/packages/truckersmp-steam-socialite)

PHPackages © 2026

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