-
Notifications
You must be signed in to change notification settings - Fork 77
serving proxy鉴权配置
dylanxu edited this page Feb 5, 2020
·
1 revision
通常情况下,数据提供方在提供数据信息时,为了保证数据安全,不被第三方调用,可以为serving-proxy调用添加鉴权配置,请求发起方必须通过鉴权才能得到返回的内容。
{
"self_party_id": "9999", // 当前服务PaytyID
"if_use_auth": false, // 是否启用鉴权
"request_expire_seconds": 8, // 请求过期时间,单位秒
"access_keys": [{ // 允许访问鉴权信息
"party_id": "9999", // 服务PartyID
"app_key": "11", // 服务appKey
"app_secret": "11111" // 服务appSecret
}, {
"party_id": "10000",
"app_key": "22",
"app_secret": "22222"
}]
}