Laravel 8 DELETE /oauth/clients/{client-id}
此路由用于删除客户端(根据 client-id
):
axios.delete('/oauth/clients/' + clientId)
.then(response => {
//
});
此路由用于删除客户端(根据 client-id
):
axios.delete('/oauth/clients/' + clientId)
.then(response => {
//
});