Before we get started with UMA, i would like to introduce OAuth, OAuth is used for authorization purposes. Suppose someday you visit a website which suggests you jokes, and you want to share this jokes with your friends so one option is to type everyone’s email and send them this website to them or connect this website to your Gmail account and let this website access your contacts but you can’t trust this website so you cannot give it your email and password. This is where OAuth comes into the picture rather than giving your website this email and password you get redirected to the website (Gmail) and you log in to that website and then give your client (jokes website) access to just your contacts and nothing else.
Now consider the example of google drive on which you have an account and you want to share some pictures from google drive with your parents so in this case you cannot use OAuth as you will need to give your gmail id and password to your parents to get these photos this is where the UMA comes into picture. Before we get started with UMA, let’s discuss some terminologies related to it.
Resource Owner: This is the user who has an account in the authorization server and will log in to the authorization server to give access to the client application for accessing resources.
Authorization server: This is the server responsible for authorizing the user and checking if the user is who he claims to be.
Resource server: This is the server where the resources are located which the client wants to access.
Client: This is the application to whom the user grants permission to access resources from the resource server on behalf of him.
Consider the example in which you want someone(requesting party) to access your private resources stored using Resource server without giving your credentials. Suppose you want to link amazon pay wallet on swiggy
Here if you want to link your amazon wallet then you can use OAuth for that where you will get redirected to the amazon’s website and you enter the amazon credentials and you have successfully linked your amazon pay wallet with your swiggy. On the other hand if you want someone else to link your amazon wallet with their swiggy without giving them the amazon credentials then you can use UMA.
Look at the above image if we try to relate our swiggy example with this one then the requesting party will be someone (not you) wants to link the amazon pay wallet with their swiggy account, the client will be swiggy, Resource server and authorization server are same in this case i.e. amazon, the resource owner is you who owns the amazon account.
The following is the flow that UMA follows:
So this is how you can use UMA to give access to someone without giving them their credentials, UMA can be used for person-to-person sharing, person-to-self and person-to-organization.