-
Notifications
You must be signed in to change notification settings - Fork 0
Basic Walkthrough
danmux edited this page Feb 6, 2012
·
7 revisions
There are two basic steps to getting data out of money toolkit...
- An Authentication POST
- A data read GET
For example...
- send a post to...
https://www.moneytoolkit.com/pub/authenticate
- with the body...
u=danm&p=pass
- Dont forget the the header...
Content-Type: application/x-www-form-urlencoded
- You will get a response like this....
{"message": "authenticated", "token": "danmeWyPfuPj"}
Grab the token and save for later...
- The requests -- send a post to... https://www.moneytoolkit.com/pub/authenticate
with the body... u=danm&p=pass
Dont forget the the header...
You will get a response like this.... {"message": "authenticated", "token": "danmeWyPfuPj"}
Grab the token and save for later...