Base64 Authentication Python


 

python3

import base64
userpass = username + ':' + password
encoded_u = base64.b64encode(userpass.encode()).decode()
headers = {"Authorization" : "Basic %s" % encoded_u}

 

参考

Base64 Authentication Python

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288757.html

(0)
上一篇 2022年9月11日
下一篇 2022年9月11日

相关推荐

发表回复

登录后才能评论