Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • QuickBaseAuth object: implements a method for retrieving a new ticket from a set of credentials and a named target instance
    Code Block
    /**
     * returns an array containing the ticket (index 0) and any error messages (index 1)
     * prototype => getTicket: function(instance, username, password)
     */
    
    h2. Access Control
    * QuickBase Resources only visible to admin, since there is hot data (passwords, app tokens)
    
    // example:
    var qa = new QuickBaseAuth();
    
    var result = qa.getTicket('mydomain.quickbase.com', 'myusername', 'mypassword');
    ticket = result[0];
    error = result[1];
    

...