PHPackages                             byancode/socialite-kick - 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. byancode/socialite-kick

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

byancode/socialite-kick
=======================

Kick (kick.com) OAuth2 Provider for Laravel Socialite

v1.0.1(7mo ago)18.0k↓32.4%1[1 issues](https://github.com/byancode/socialite-kick/issues)[1 PRs](https://github.com/byancode/socialite-kick/pulls)MITPHPPHP ^8.0

Since Feb 22Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/byancode/socialite-kick)[ Packagist](https://packagist.org/packages/byancode/socialite-kick)[ RSS](/packages/byancode-socialite-kick/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (4)Used By (0)

TikTok
======

[](#tiktok)

```
composer require byancode/socialite-kick
```

Installation &amp; Basic Usage
------------------------------

[](#installation--basic-usage)

Please see the [Base Installation Guide](https://socialiteproviders.com/usage/), then follow the provider specific instructions below.

### Add configuration to `config/services.php`

[](#add-configuration-to-configservicesphp)

```
'kick' => [
  'client_id' => env('KICK_CLIENT_ID'),
  'client_secret' => env('KICK_CLIENT_SECRET'),
  'redirect' => env('KICK_REDIRECT_URI')
],
```

### Add provider event listener

[](#add-provider-event-listener)

#### Laravel 11+

[](#laravel-11)

In Laravel 11, the default `EventServiceProvider` provider was removed. Instead, add the listener using the `listen` method on the `Event` facade, in your `AppServiceProvider` `boot` method.

- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

```
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
    $event->extendSocialite('kick', \Byancode\SocialiteKick\Provider::class);
});
```

Laravel 10 or below Configure the package's listener to listen for `SocialiteWasCalled` events. Add the event to your `listen[]` array in `app/Providers/EventServiceProvider`. See the [Base Installation Guide](https://socialiteproviders.com/usage/) for detailed instructions.

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        \Byancode\SocialiteKick\KickExtendSocialite::class.'@handle',
    ],
];
```

### Usage

[](#usage)

You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):

```
return Socialite::driver('kick')->redirect();
```

### Important information

[](#important-information)

For proper operation make sure you have the following permissions/scopes approved:

- `user:read`

Returned User Fields
====================

[](#returned-user-fields)

- id
- username (requires the permission/scope `user:read`)
- union\_id
- name
- avatar

Reference
=========

[](#reference)

- [TikTok Login Kit](https://developers.tiktok.com/doc/login-kit-web)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance42

Moderate activity, may be stable

Popularity28

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% 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 ~215 days

Total

2

Last Release

235d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/37272486?v=4)[Byancode](/maintainers/byancode)[@byancode](https://github.com/byancode)

---

Top Contributors

[![byancode](https://avatars.githubusercontent.com/u/37272486?v=4)](https://github.com/byancode "byancode (4 commits)")[![salmanalee](https://avatars.githubusercontent.com/u/10091529?v=4)](https://github.com/salmanalee "salmanalee (1 commits)")

---

Tags

laravelprovideroauthsocialitekick

### Embed Badge

![Health badge](/badges/byancode-socialite-kick/health.svg)

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

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

326.1M13](/packages/socialiteproviders-microsoft)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)[kovah/laravel-socialite-oidc

OpenID Connect OAuth2 Provider for Laravel Socialite

2073.7k](/packages/kovah-laravel-socialite-oidc)[socialiteproviders/kakao

Kakao OAuth2 Provider for Laravel Socialite

10484.7k4](/packages/socialiteproviders-kakao)

PHPackages © 2026

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