Podio API Documentation
OAuth authorization: Client info
This validates a clients request for access to the API through a specific user. This should be called when the user is logged in, but before the authorization of the client takes place.
Parameters
- client_id
The key of the API client
- redirect_uri
The redirect URL requested by the client if any. This has to match the domain associated with the client.
- response_type
The response type the client request, supported types are "code" and "token".
Response
{
"name": The name of the client to be used when asking the user for access,
"implicit": True if the grant can be given implicitly, false otherwise
}