Description
OAuth 2.0 is the industry-standard protocol for authorization.
Where to use
- Delegated Access. \n
- Social Login.
Real World Example
Allowing a third-party print service to access your photos on Google Photos without giving them your password.
Code Example
class OAuth2.0:
def __init__(self):
pass
def execute(self):
print('Executing OAuth 2.0')
