Implemented Accounts endpoint on client

This commit is contained in:
Jacob Windle 2019-11-15 11:32:00 -05:00
parent d86d0a775b
commit 13b5665109
3 changed files with 44 additions and 18 deletions

View File

@ -1 +1,19 @@
# investmentally # Ally Invest API in Go
This project is intended to be an API wrapper for the Ally Invest API written in Golang
## Endpoints
The different endpoints that are currently covered by this API
### /accounts
Get all account information for a user.
## Running This Project
For now, just build this directory and run the executable.
### Requirements
You must within the .env file define your Ally Invest credentials

View File

@ -1,9 +1,11 @@
package main package main
import ( import (
"encoding/xml"
"fmt" "fmt"
"github.com/joho/godotenv" "github.com/joho/godotenv"
"github.com/mrjones/oauth" "github.com/mrjones/oauth"
"io/ioutil"
"net/http" "net/http"
"os" "os"
) )
@ -41,7 +43,28 @@ func (c *AllyApi) Initialize() {
} }
} }
func (c *AllyApi) Get(path string) (resp *http.Response, err error) { func (c *AllyApi) get(path string) (resp *http.Response, err error) {
resp, err = c.Client.Get(fmt.Sprintf("%s\\%s", endpoint, path)) resp, err = c.Client.Get(fmt.Sprintf("%s\\%s", endpoint, path))
return return
} }
/* The /accounts endpoint of Ally */
func (c *AllyApi) Accounts() (resp AllyResponse, err error) {
b, err := c.get("accounts")
if err != nil {
return
}
defer b.Body.Close()
raw, err := ioutil.ReadAll(b.Body)
if err != nil {
return
}
err = xml.Unmarshal(raw, &resp)
if err != nil {
return
}
return
}

17
main.go
View File

@ -1,9 +1,7 @@
package main package main
import ( import (
"encoding/xml"
"fmt" "fmt"
"io/ioutil"
) )
func main() { func main() {
@ -11,20 +9,7 @@ func main() {
var api AllyApi var api AllyApi
api.Initialize() api.Initialize()
// Set up our HTTP client acctSummary, _ := api.Accounts()
resp, err := api.Get("accounts")
defer resp.Body.Close()
b, _ := ioutil.ReadAll(resp.Body)
var acctSummary AllyResponse
err = xml.Unmarshal(b, &acctSummary)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", b)
fmt.Printf("%f\n", acctSummary.Accounts[0].AccountHoldingsInfo.TotalSecurities) fmt.Printf("%f\n", acctSummary.Accounts[0].AccountHoldingsInfo.TotalSecurities)
} }