fastwhale/yii2-we-work-private

Yii2 private wechat work SDK

1.0.0.2 2023-12-28 01:37 UTC

This package is auto-updated.

Last update: 2024-05-28 02:57:42 UTC


README

Yii2 private wechat work SDK

Latest Stable Version Total Downloads License PHP Version Require

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist fastwhale/yii2-we-work-private "*"

or add

"fastwhale/yii2-we-work-private": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

/** @var Work $workApi */
$workApi = \Yii::createObject([
    'class'             => Work::className(),
    'corpid'            => $corpid,
    'secret'            => $secret,
    'privatizedBaseUrl' => 'https://privateHost',
]);

/** @var Work $agentApi */
$agentApi = \Yii::createObject([
    'class'             => Work::className(),
    'corpid'            => $corpid,
    'secret'            => $agentSecret,
    'privatizedBaseUrl' => 'https://privateHost',
]);

/** @var ServiceWork $serviceWork */
$serviceWork = \Yii::createObject([
    'class'             => ServiceWork::className(),
    'suite_id'          => $suiteId,
    'suite_secret'      => $suiteSecret,
    'suite_ticket'      => $suiteTicket,
    'auth_corpid'       => $authCorpid,
    'permanent_code'    => $permanentCode,
    'privatizedBaseUrl' => 'https://privateHost',
]);

/** @var ServiceProvider $serviceProvider */
$serviceProvider = \Yii::createObject([
    'class'             => ServiceProvider::className(),
    'provider_corpid'   => $providerCorpid,
    'provider_secret'   => $providerSecret,
    'privatizedBaseUrl' => 'https://privateHost',
]);