-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79ef145
commit 530fe73
Showing
13 changed files
with
154 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<!-- ex_nonav --> | ||
|
||
# 数据模块 | ||
# 数据表模块 | ||
|
||
* [数据表操作](./table.md) | ||
* [数据操作](./record.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!-- ex_nonav --> | ||
|
||
# 知晓云运营 API | ||
# 运营后台 API | ||
|
||
知晓云支持开发者结合 User Dash API 按需编写一套独立的运营后台,供并非开发者的用户使用。 | ||
知晓云支持开发者结合 User Dash API 按需编写一套独立的运营后台,供非开发者的用户使用。 | ||
|
||
若遇到问题,请联系 <minapp-support@ifanr.com> 或者客服(微信号:minsupport) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# 授权认证 | ||
|
||
## 鉴权方式 | ||
|
||
用户管理后台 API 采用的 Cookie-base 的授权方式来实现用户身份的授权。 | ||
|
||
## 授权流程 | ||
|
||
开发者需要将以下代码片段放入用户管理后台的 .html 文件中,来完成用户身份的验证: | ||
|
||
```html | ||
<!-- 其中 client_id 需替换为您应用的 ClientID --> | ||
<script src="https://cloud.minapp.com/custom-userdash/auth/<client_id>/"></script> | ||
``` | ||
|
||
示例: | ||
|
||
```html | ||
<html> | ||
<head> | ||
<!-- 其中 client_id 需替换为您应用的 ClientID --> | ||
<script src="https://cloud.minapp.com/custom-userdash/auth/<client_id>/"></script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> | ||
``` | ||
|
||
用户管理后台可能会存在多个管理页面,需要保证每个管理页面的 **head** 都加入上述代码片段,以确保页面的登录状态。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<!-- ex_nonav --> | ||
|
||
# 数据模块 | ||
# 数据表模块 | ||
|
||
* [数据表操作](./table.md) | ||
* [数据操作](./record.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.