OpenidRoutes
public class OpenidRoutes : DropboxTransportClientOwning
Routes for the openid namespace For Objective-C compatible routes see DBOpenidRoutes
-
This route is used for refreshing the info that is found in the id_token during the OIDC flow. This route doesn’t require any arguments and will use the scopes approved for the given access token.
scope: openid
Declaration
Swift
@discardableResult public func userinfo() -> RpcRequest<Openid.UserInfoResultSerializer, Openid.UserInfoErrorSerializer>
Return Value
Through the response callback, the caller will receive a
Openid.UserInfoResult
object on success or aOpenid.UserInfoError
object on failure.