apinode
Version:
An API server that can greatly reduce the work needed to implment API services. It can also cooperate with other API node to make it a mesh of services.
35 lines • 1.16 kB
JSON
{
"id": {
"en": "No identifier.",
"zh": "沒有識別碼。"
},
"url": "admin/user/updPasswd",
"descTx": {
"en": "Modify password.",
"zh": "變更密碼。"
},
"query": [
{
"key": "oldPasswd",
"descTx": {
"en": "Old password. Required. The client side has to hash & salt the password before sending it out.",
"zh": "舊密碼。必要參數。子端程式必須先以雜湊函數(hash function)編碼後送出。"
}
},
{
"key": "passwd",
"descTx": {
"en": "New password. Required. The client side has to hash & salt the password before sending it out.",
"zh": "新的使用者密碼。必要參數。子端程式必須先以雜湊函數(hash function)編碼後送出。"
}
},
{
"key": "passwd2",
"descTx": {
"en": "Confirm new password. Required. The client side has to hash & salt the password before sending it out.",
"zh": "重複新的使用者密碼。子端程式必須先以雜湊函數(hash function)編碼後送出。建議子端程式自行比對重複密碼,不需送出到 devapi server 檢查。"
}
}
],
"out": []
}