package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Stores data from authorization responses.

module ClientLogin : sig ... end
module OAuth1 : sig ... end
module AuthSub : sig ... end
module OAuth2 : sig ... end
type t =
  1. | ClientLoginAuthToken of ClientLogin.auth_token
  2. | ClientLoginCaptcha of ClientLogin.captcha
  3. | OAuth1RequestToken of OAuth1.request_token
  4. | OAuth1AuthorizeToken of OAuth1.auth_token
  5. | OAuth1GetAccessToken of OAuth1.access_token
  6. | AuthSubTokenInfo of AuthSub.token_info
  7. | OAuth2AuthCode of OAuth2.auth_code
  8. | OAuth2AccessToken of OAuth2.access_token
val client_login_auth_token : (t, ClientLogin.auth_token option) GapiLens.t
val client_login_captcha : (t, ClientLogin.captcha option) GapiLens.t
val oauth1_request_token : (t, OAuth1.request_token option) GapiLens.t
val oauth1_authorize_token : (t, OAuth1.auth_token option) GapiLens.t
val oauth1_get_access_token : (t, OAuth1.access_token option) GapiLens.t
val auth_sub_token_info : (t, AuthSub.token_info option) GapiLens.t
val oauth2_auth_code : (t, OAuth2.auth_code option) GapiLens.t
val oauth2_access_token : (t, OAuth2.access_token option) GapiLens.t