https://github.com/alienhoboken/caspiotools
CaspioTools is a toolchain for the Caspio Web Services API
https://github.com/alienhoboken/caspiotools
Last synced: about 1 year ago
JSON representation
CaspioTools is a toolchain for the Caspio Web Services API
- Host: GitHub
- URL: https://github.com/alienhoboken/caspiotools
- Owner: AlienHoboken
- License: mit
- Created: 2014-03-26T07:45:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-31T05:30:40.000Z (about 12 years ago)
- Last Synced: 2025-01-27T10:21:51.050Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CaspioTools
===========
CaspioTools is a **PHP** toolchain for the Caspio Web Services API that is meant to aid in application development speed and robustness when using the Caspio platform.
CaspioTools effectively abstracts away the usage of the Caspio Web Servies API so that you can spend more time developing your application and less time learning a new API system.
Further, the CaspioTools toolchain provides additional, useful capabilities such as user logins.
Using
-----
1. Setup a new Web Services Profile (WSP)
2. Include CaspioTools.php
3. Instantiate a new CaspioTools object by passing in your Account ID, WSP Name, and WSP Password
```php
require_once('/path/to/CaspioTools.php');
$AccountID = "Your Caspio Username";
$ProfileName = "WSP Name";
$Password = "WSP Password";
$caspio = new CaspioTools($AccountID, $ProfileName, $Password);
```
Now you can use any of the packaged methods/functionalities of CaspioTools explained below!