开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (10)
标签 (159)
master
dependabot/composer/symfony/psr-http-message-bridge-tw-2.0.0
4.1
4.2
3.3
4.0
3.2
3.1
2.1
2.0
4.2.11
4.2.10
4.2.9
4.2.8
4.2.7
4.2.6
4.2.5
4.1.32
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.14
4.1.31
4.1.30
4.1.29
4.1.28
4.1.27
4.1.26
master
分支 (10)
标签 (159)
master
dependabot/composer/symfony/psr-http-message-bridge-tw-2.0.0
4.1
4.2
3.3
4.0
3.2
3.1
2.1
2.0
4.2.11
4.2.10
4.2.9
4.2.8
4.2.7
4.2.6
4.2.5
4.1.32
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.14
4.1.31
4.1.30
4.1.29
4.1.28
4.1.27
4.1.26
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (10)
标签 (159)
master
dependabot/composer/symfony/psr-http-message-bridge-tw-2.0.0
4.1
4.2
3.3
4.0
3.2
3.1
2.1
2.0
4.2.11
4.2.10
4.2.9
4.2.8
4.2.7
4.2.6
4.2.5
4.1.32
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.14
4.1.31
4.1.30
4.1.29
4.1.28
4.1.27
4.1.26
wechat
/
src
/
OpenWork
/
Provider
/
Client.php
wechat
/
src
/
OpenWork
/
Provider
/
Client.php
Client.php 6.35 KB
一键复制 编辑 原始数据 按行查看 历史
Xiangxuan Liu 提交于 2019年08月19日 23:00 +08:00 . Fix phpDoc
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\OpenWork\Provider;
use EasyWeChat\Kernel\BaseClient;
use EasyWeChat\Kernel\ServiceContainer;
/**
* Client.
*
* @author xiaomin <keacefull@gmail.com>
*/
class Client extends BaseClient
{
/**
* Client constructor.
*
*
* @param ServiceContainer $app
*/
public function __construct(ServiceContainer $app)
{
parent::__construct($app, $app['provider_access_token']);
}
/**
* 单点登录 - 获取登录的地址.
*
* @param string $redirectUri
* @param string $userType
* @param string $state
*
* @return string
*/
public function getLoginUrl(string $redirectUri = '', string $userType = 'admin', string $state = '')
{
$redirectUri || $redirectUri = $this->app->config['redirect_uri_single'];
$state || $state = rand();
$params = [
'appid' => $this->app['config']['corp_id'],
'redirect_uri' => $redirectUri,
'usertype' => $userType,
'state' => $state,
];
return 'https://open.work.weixin.qq.com/wwopen/sso/3rd_qrConnect?'.http_build_query($params);
}
/**
* 单点登录 - 获取登录用户信息.
*
* @param string $authCode
*
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getLoginInfo(string $authCode)
{
$params = [
'auth_code' => $authCode,
];
return $this->httpPostJson('cgi-bin/service/get_login_info', $params);
}
/**
* 获取注册定制化URL.
*
* @param string $registerCode
*
* @return string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
*/
public function getRegisterUri(string $registerCode = '')
{
if (!$registerCode) {
/** @var array $response */
$response = $this->detectAndCastResponseToType($this->getRegisterCode(), 'array');
$registerCode = $response['register_code'];
}
$params = ['register_code' => $registerCode];
return 'https://open.work.weixin.qq.com/3rdservice/wework/register?'.http_build_query($params);
}
/**
* 获取注册码.
*
* @param string $corpName
* @param string $adminName
* @param string $adminMobile
* @param string $state
*
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getRegisterCode(
string $corpName = '',
string $adminName = '',
string $adminMobile = '',
string $state = ''
) {
$params = [];
$params['template_id'] = $this->app['config']['reg_template_id'];
!empty($corpName) && $params['corp_name'] = $corpName;
!empty($adminName) && $params['admin_name'] = $adminName;
!empty($adminMobile) && $params['admin_mobile'] = $adminMobile;
!empty($state) && $params['state'] = $state;
return $this->httpPostJson('cgi-bin/service/get_register_code', $params);
}
/**
* 查询注册状态.
*
* Desc:该API用于查询企业注册状态,企业注册成功返回注册信息.
*
* @param string $registerCode
*
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function getRegisterInfo(string $registerCode)
{
$params = [
'register_code' => $registerCode,
];
return $this->httpPostJson('cgi-bin/service/get_register_info', $params);
}
/**
* 设置授权应用可见范围.
*
* Desc:调用该接口前提是开启通讯录迁移,收到授权成功通知后可调用。
* 企业注册初始化安装应用后,应用默认可见范围为根部门。
* 如需修改应用可见范围,服务商可以调用该接口设置授权应用的可见范围。
* 该接口只能使用注册完成回调事件或者查询注册状态返回的access_token。
* 调用设置通讯录同步完成后或者access_token超过30分钟失效(即解除通讯录锁定状态)则不能继续调用该接口。
*
* @param string $accessToken
* @param string $agentId
* @param array $allowUser
* @param array $allowParty
* @param array $allowTag
*
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
*/
public function setAgentScope(
string $accessToken,
string $agentId,
array $allowUser = [],
array $allowParty = [],
array $allowTag = []
) {
$params = [
'agentid' => $agentId,
'allow_user' => $allowUser,
'allow_party' => $allowParty,
'allow_tag' => $allowTag,
'access_token' => $accessToken,
];
return $this->httpGet('cgi-bin/agent/set_scope', $params);
}
/**
* 设置通讯录同步完成.
*
* Desc:该API用于设置通讯录同步完成,解除通讯录锁定状态,同时使通讯录迁移access_token失效。
*
* @param string $accessToken
*
* @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
*/
public function contactSyncSuccess(string $accessToken)
{
$params = ['access_token' => $accessToken];
return $this->httpGet('cgi-bin/sync/contact_sync_success', $params);
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

https://github.com/overtrue/wechat.git EasyWeChat 镜像
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netscript/wechat.git
git@gitee.com:netscript/wechat.git
netscript
wechat
wechat
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /