A lightweight, very flexible QuickBase API
$ composer require tflanagan/quickbase
try {
$qb = new QuickBase(array(
'realm' => 'www',
'appToken' => '****'
));
$qb->api('API_Authenticate', array(
'username' => '****',
'password' => '****'
));
$response = $qb->api('API_DoQuery', array(
'dbid' => '*****',
'clist' => '3.12',
'options' => 'num-5'
));
foreach($response['table']['records'] as $record){
$qb->api('API_EditRecord', array(
'dbid' => '*****',
'rid' => $record[3],
'fields' => array(
array( 'fid' => 12, 'value' => $record[12])
)
));
}
$response = $qb->api('API_DoQuery', array(
'dbid' => '*****',
'clist' => '3.12',
'options' => 'num-5'
));
var_dump($response['table']['records']);
}catch(QuickBaseError $err){
echo '('.$err->getCode().') '.$err->getMessage().'. '.$err->getDetails();
}
php-quickbase throws exceptions whenever an error is detected. You do not have to manually check for QuickBase errors, just wrap your code in try/catch
's and you're good to go!
try {
// QuickBase API Calls Here
}catch(QuickBaseError $err){
echo '('.$err->getCode().') '.$err->getMessage().'. '.$err->getDetails();
/*
* class QuickBaseError extends Exception {
*
* protected int $code;
* protected string $message;
* protected string $details;
*
* protected int $line;
* protected string $file;
*
* final public getCode(void);
* final public getMessage(void);
* final public getDetails(void);
*
* final public getLine(void);
* final public getFile(void);
*
* }
*/
}
Copyright 2015 Tristian Flanagan
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.