Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alienhoboken/caspiotools
CaspioTools is a toolchain for the Caspio Web Services API
https://github.com/alienhoboken/caspiotools
Last synced: about 2 months 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-31T05:30:40.000Z (almost 11 years ago)
- Last Synced: 2024-04-23T17:12:18.358Z (9 months 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!