Weibo Login

This extension enables Weibo Sign In and Sign up.
Compatible with Flarum Beta 8.x
Installation
composer require minr/flarum-ext-auth-weibo
Update
composer update minr/flarum-ext-auth-weibo
Configuration
Links
Others
How to Support Chinese
Step 1:
vi /vendor/flarum/core/src/User/UserValidator.php
replace : 'regex:/^[-_a-zA-Z0-9\x7f-\xff]+$/i',
Step 2:
vi ./vendor/flarum/core/src/Forum/Auth/Registration.php
public function suggestUsername(string $username): self{
// $username = preg_replace('/[^a-z0-9-_]/i', '', $username);
return $this->suggest('username', $username);
}