PHP code example of xutl / yii2-aliyun
1. Go to this page and download the library: Download xutl/yii2-aliyun library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
xutl / yii2-aliyun example snippets
'components' => [
'aliyun' => [
'class' => 'xutl\aliyun\Aliyun', //这个类其实就是 继承了 `\yii\di\ServiceLocator` 类。
'accessId' => '123456',
'accessKey' => '654321',
'params'=> [//这里是非扩展的配置参数,如队列任务等
'CloudPush.appKey' => 123456789
],
'components' => [
//各子组件配置,如果无需配置不写即可。也可动态注入配置。
//如果子组件使用独立的 `accessId` 和 `accessKey` 那么在子组件中单独配置即可,如果没有配置默认使用父 `accessId` 和 `accessKey` 。
//如果你自己扩展了其他的子组件,这里定义下新的组件配置即可,配置方式,数组接口和 YII 原生组件一致!
//etc
]
],
],
$aliyun = Yii::$app->aliyun;
$cloudPush = $aliyun->getCloudPush();
// 查看文档 https://help.aliyun.com/knowledge_detail/48085.html 请求参数中的 `Action` 省略,其他的照着写上就发包了。
// 实现原理是 首先 Aliyun 类使用 DI 技术 将子组件注册进来,在第一次使用时,会自动初始化,接着使用PHP的魔术方法请求对应的接口,方法名称即 `Action` 参数首字母小写即可。
$res = $cloud->pushMessageToAndroid([
'AppKey'=>'123456',
'Target' => 'ALL',
'TargetValue' => 'ALL',
'Title' => 'Hello',
'Body' => 'Hello World!',
]);
var_dump($res->isOk);
print_r($res->data);
//或者使用队列处理
Yii::$app->queue->push(new \xutl\aliyun\jobs\PushNoticeToMobile([
//etc
]));
//其他接口类似调用方式
//如果扩展 暂不支持的接口,直接继承 `\xutl\aliyun\BaseClient` 和 `\xutl\aliyun\BaseAcsClient` 基类即可自带 认证。你只需扩展方法即可。
// 然后使用YII 自带的组件机制,参见上面的安装配置,把你自定义的接口注入进来即可。