Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soxft/openid-sdk-php
sdk of xopenId
https://github.com/soxft/openid-sdk-php
Last synced: 26 days ago
JSON representation
sdk of xopenId
- Host: GitHub
- URL: https://github.com/soxft/openid-sdk-php
- Owner: soxft
- License: apache-2.0
- Created: 2021-11-07T11:53:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T17:56:02.000Z (about 1 year ago)
- Last Synced: 2024-04-01T19:20:30.911Z (7 months ago)
- Language: PHP
- Homepage: https://9420.ltd
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# openIdSdk
> sdk of x openId# 使用方法
## 下载sdk
> 目前仅提供php sdk, 支持php 7+,php 8
- 使用Git: [https://github.com/soxft/openIdSdk/](https://github.com/soxft/openIdSdk/)
- 使用Composer: composer require soxft/openidsdk## 使用sdk
在`v1 API`中, 您可以在您的网站上添加一个按钮或图标跳转至我们的授权接口获取`token`, 验证用户身份后, 将自动携带token跳转至您的回调地址.
对于使用 composer 引入`sdk`后, 我们可以尝试通过以下方法跳转至授权界面:
```php
jump('redirect_uri'); //该方法将会直接跳转至授权界面, 不用让用户点击
?>
```
- 在上述代码中 `appid` 代表您的应用ID, `app_secret`代表您的应用密钥,`redirect_uri` 代表您的回调地址接下来, 在您的业务代码中再次调用:
```php
getUserInfo($_GET['token'] ?? ""); // 如果token正确 该方法会返回用户信息print_r($res); //输出用户信息
/** 用户登录逻辑代码 **/
?>
```
- 在上述的代码中 `token` 为您的回调端中 Query 参数中的token, 一般由授权端跳转得到如果配置正确, 您将会得到用户的 `open_id` 以及 `unique_id`, 之后你可以继续处理您的登录逻辑.