Basic access authentication: Difference between revisions

Content deleted Content added
mark unreliable source
Protocol: improved style
Tags: Mobile edit Mobile app edit Android app edit App section source
 
(6 intermediate revisions by 4 users not shown)
Line 58:
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
</code>
 
<syntaxhighlight lang="python">
'Basic ' + base64.b64encode(f"{<clientid>}:{<client secret key>}".encode()).decode()
</syntaxhighlight>
 
== See also ==