wangshukai/mn-sso-php-sdk

There is no license information available for the latest version (0.0.1) of this package.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/wangshukai/mn-sso-php-sdk

0.0.1 2022-06-23 06:12 UTC

This package is auto-updated.

Last update: 2025-10-23 13:09:55 UTC


README

mnssoSDK

安装

$ composer require wangshukai/mn-sso-php-sdk

使用示例

<?php
#使用分配的key和appSecret 网关地址填写测试或者线上地址  参数相关请参考文档
$config =['appKey' => '', 'appSecret' => '', 'gatewayUrl' => "","jumpUrl"=>''];
$sso = new Sso($config);
$token = $sso->token;//用户相关
$data = [
            'grant_type' => 'authorization_code',
            'code' => 'xxx'
             ];
$res=$token->getToken($data);//token操作

License

MIT