forked from zonedoutspace/bow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.php
More file actions
32 lines (24 loc) · 1.06 KB
/
Copy pathapi.php
File metadata and controls
32 lines (24 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
//======================================================================
// APPLICATION PROGRAMMING INTERFACE (api.php)
//======================================================================
//----------------------------------------------------------------------
// This file contains all the information and basic functions needed in
// order for external clients to connect and use this application.
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// List of basic requests that can be made.
// - LOGIN
// - LOGOUT
// - TRANSFER
// - BALANCE
// - TRANSACTIONS
// - NEWADDRESS
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// Documentation for this API exists in
// http://yoursite/bow/api_documentation
//----------------------------------------------------------------------
include 'app/config/init.php';
$api = new API($_REQUEST);
echo $api->getReturnedData();