fix
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/*!
|
||||
* Hybridauth
|
||||
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth
|
||||
* (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
|
||||
*/
|
||||
|
||||
namespace Hybridauth\Provider;
|
||||
|
||||
/**
|
||||
* WeChat China OAuth2 provider adapter.
|
||||
*/
|
||||
class WeChatChina extends WeChat
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected $apiBaseUrl = 'https://api.weixin.qq.com/sns/';
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected $accessTokenUrl = 'https://api.weixin.qq.com/sns/oauth2/access_token';
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected $tokenRefreshUrl = 'https://api.weixin.qq.com/sns/oauth2/refresh_token';
|
||||
|
||||
/**
|
||||
* {@ịnheritdoc}
|
||||
*/
|
||||
protected $accessTokenInfoUrl = 'https://api.weixin.qq.com/sns/auth';
|
||||
}
|
||||
Reference in New Issue
Block a user