django restframework
涉及到服务器之间的服务认证,在公网上传输,有现成的服务认证库吗?
就是类似于给一个服务器分配一个appid
与secret
然后把appid
以及md5(secret+时间戳+其它参数)
一起传过来,证明服务调用来自合法调用者的
高洛峰2017-04-18 09:47:00
django restframework supports multiple authentication methods, refer to http://www.django-rest-framew..., the one you mentioned is similar to HTTP Signature Authentication: http://www.django-rest-framew... .