LogoSearch packages:      

Sourcecode: conduit version File versions

def gdata::service::GDataService::ClientLogin (   self,
  username,
  password,
  account_type = None,
  service = None,
  auth_service_url = None,
  source = None,
  captcha_token = None,
  captcha_response = None 
) [inherited]

Convenience method for authenticating using ProgrammaticLogin. 

Sets values for email, password, and other optional members.

Args:
  username:
  password:
  account_type: string (optional)
  service: string (optional)
  auth_service_url: string (optional)
  captcha_token: string (optional)
  captcha_response: string (optional)

Definition at line 359 of file service.py.

                                                                                    :
    """Convenience method for authenticating using ProgrammaticLogin. 
    
    Sets values for email, password, and other optional members.

    Args:
      username:
      password:
      account_type: string (optional)
      service: string (optional)
      auth_service_url: string (optional)
      captcha_token: string (optional)
      captcha_response: string (optional)
    """
    self.email = username
    self.password = password

    if account_type:
      self.account_type = account_type
    if service:
      self.service = service
    if source:
      self.source = source
    if auth_service_url:
      self.auth_service_url = auth_service_url

    self.ProgrammaticLogin(captcha_token, captcha_response)

  def GenerateAuthSubURL(self, next, scope, secure=False, session=True):


Generated by  Doxygen 1.5.1   Back to index