# README
Oauth Client
This projects aims to provide generic helper endpoints to verify and obtain information about third parties oauth tokens.
Endpoints available so far:
execute verify {"token": "abc", "provider": "google"}
{
"valid": true
}
execute info {"token": "abc", "provider": "google"}
{
"email": "[email protected]",
"givenName": "Gianni",
"familyName": "Moschini"
}
# Constants
ServiceVersion is the version of this service It gets automatically updated by the build process.