herojhc / xxh-sdk
xinxihua.com sdk.
0.11.8
2021-01-14 10:03 UTC
Requires
- php: >=7.1.3
- doctrine/dbal: ~2.6
- guzzlehttp/guzzle: ~6.0
- laravel/framework: ~5.5|~6.0|~7.0
Requires (Dev)
- phpunit/phpunit: 4.*
- dev-master
- 0.11.8
- 0.11.7
- 0.11.6
- 0.11.5
- 0.11.4
- 0.11.3
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.1
- 0.9.0
- 0.8.5
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.15
- 0.6.14
- 0.6.13
- 0.6.12
- 0.6.11
- 0.6.10
- 0.6.9
- 0.6.8
- 0.6.7
- 0.6.6
- 0.6.5
- 0.6.4
- 0.6.3
- 0.6.2
- 0.6.1
- 0.5.22
- 0.5.21
- 0.5.20
- 0.5.19
- 0.5.18
- 0.5.17
- 0.5.16
- 0.5.15
- 0.5.14
- 0.5.13
- 0.5.12
- 0.5.11
- 0.5.10
- 0.5.9
- 0.5.8
- 0.5.7
- 0.5.6
- 0.5.5
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.23
- 0.4.22
- 0.4.20
- 0.4.19
- 0.4.18
- 0.4.17
- 0.4.16
- 0.4.15
- 0.4.14
- 0.4.13
- 0.4.12
- 0.4.11
- 0.4.10
- 0.4.9
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.3.1
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
This package is auto-updated.
Last update: 2025-03-14 19:36:34 UTC
README
title | tags | grammar_mindmap |
---|---|---|
信息化平台SDK使用说明 | 信息化、SDK | true |
环境
laravel 5.5 或 5.6 以及他们需要的环境
安装
composer require herojhc/xxh-sdk
配置
发布配置
php artisan vendor:publish --provider="XinXiHua\SDK\XXHServiceProvider" --tag="xxh-sdk-config"
运行迁移
php artisan vendor:publish --provider="XinXiHua\SDK\XXHServiceProvider" --tag="xxh-sdk-migrations"
php artisan migrate
修改User模型主键
protected $primaryKey = 'user_id';
参数说明
配置环境变量
#----------- #AppId,具体见应用详情 REST_CLIENT_ID=cd188ae7d6344beb8ccc660643bf886f #AppSecret,具体见应用详情 REST_CLIENT_SECRET=138fa802f76c4f0ba472cfe9d9ebf852 #Api 地址 REST_CLIENT_API_URL=https://api.xinxihua.com #具体API的HOST,不同的API分支对应不同的HOST,具体见信息化平台API总览 REST_CLIENT_API_HOST=api.v2.services.xinxihua.com #------------- #应用的ID(信息化平台),具体见应用详情 AUTH_AGENT_ID=10000 #前台回调地址 AUTH_CALLBACK_HOME_URL=http://crm.xinxihua.com/callback #登录后前台跳转页面 AUTH_REDIRECT_HOME_URL=http://crm.xinxihua.com/home #后台回调地址 AUTH_CALLBACK_ADMIN_URL=http://crm.xinxihua.com/admin/callback #登录后后台跳转地址 AUTH_REDIRECT_ADMIN_URL=http://crm.xinxihua.com/admin #信息化平台地址 AUTH_PALTFORM_URL=https://oa.xinxihua.com #信息化平台授权登陆地址 AUTH_GATEWAY_URL=https://oa.xinxihua.com/sso-login #应用通讯的TOKEN AUTH_TOKEN=1QchOH0JQ6PGTCcFSapG #应用通讯的加密字符串 AUTH_ENCODING_KEY=ZOFV3OSokCBmaC34zP3FM41B88dccl7AC65RuaoyuaB
使用
路由配置
- 在web路由中配置
XXH::routes();
说明:XXH::routes() 包含以下路由,如果要控制权限,可以通过中间件方式
Route::get('login', '\XinXiHua\SDK\Http\Controllers\LoginController@login')->name('login'); Route::post('logout', '\XinXiHua\SDK\Http\Controllers\LoginController@logout')->name('logout'); Route::get('callback', '\XinXiHua\SDK\Http\Controllers\LoginController@callback')->name('callback'); Route::get('admin/login', '\XinXiHua\SDK\Http\Controllers\Admin\LoginController@login')->name('admin.login'); Route::post('admin/logout', '\XinXiHua\SDK\Http\Controllers\Admin\LoginController@logout')->name('admin.logout'); Route::get('admin/callback', '\XinXiHua\SDK\Http\Controllers\Admin\LoginController@callback')->name('admin.callback'); Route::any('serve', '\XinXiHua\SDK\Http\Controllers\ServeController@serve')->name('serve');
- 将 serve 添加到 VerifyCsrfToken 中间件中
<?php namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware; class VerifyCsrfToken extends Middleware { /** * The URIs that should be excluded from CSRF verification. * * @var array */ protected $except = [ // 'serve' ]; }
用法
<?php /** * Created by PhpStorm. * User: JHC * Date: 2018-07-24 * Time: 11:51 */ namespace XinXiHua\SDK\Services; use Illuminate\Support\Facades\Log; use XinXiHua\SDK\Exceptions\ApiException; class ContactService extends BaseService { public function all() { $response = $this->client->get('/contacts'); Log::info($response->getResponse()); if ($response->isResponseSuccess()) { return $response->getResponseData()['data']; } throw new ApiException($response->getResponseData()['message']); } }