提交 bcece21c 编写于 作者: d-u-a's avatar d-u-a

uni-open-bridge: 更新简单调用get方法示例代码

上级 0b3b6b89
...@@ -132,21 +132,29 @@ ...@@ -132,21 +132,29 @@
如果用户没有开通 `redis` 或者操作失败,透传到 `database``database` 失败后,如果用户配置了 `fallback`,继续调用 `fallback` 方法,否则抛出 `Error``database` 对应的表为: `opendb-open-data` 如果用户没有开通 `redis` 或者操作失败,透传到 `database``database` 失败后,如果用户配置了 `fallback`,继续调用 `fallback` 方法,否则抛出 `Error``database` 对应的表为: `opendb-open-data`
在常见的情况下,在你的云函数/云对象中调用`uni-open-bridge-common`的几个get方法即可。 在常见的情况下,在你的云函数/云对象中调用`uni-open-bridge-common`的几个get方法即可。
//TODO **评审这段代码**@handongxu
```js ```js
let uobc = require('uni-open-bridge-common')
// 应用级凭据
const key = { const key = {
dcloudAppid: '__UNI__xxx', // DCloud Appid dcloudAppid: '__UNI__xxx', // DCloud Appid
platform: 'mp-weixin' // 平台,解释见下 platform: 'mp-weixin' // 平台,解释见下
} }
let uobc = require('uni-open-bridge-common')
uobc.getAccessToken(key) uobc.getAccessToken(key)
uobc.getUserAccessToken(key)
uobc.getSessionKey(key)
uobc.getEncryptKey(key)
uobc.getTicket(key) uobc.getTicket(key)
// 用户级凭据
const userKey = {
dcloudAppid: '__UNI__xxx', // DCloud Appid
platform: 'mp-weixin', // 平台,解释见下
openid: ''
}
uobc.getUserAccessToken(userKey)
uobc.getSessionKey(userKey)
uobc.getEncryptKey(userKey)
``` ```
#### Platform@platform #### Platform@platform
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册