Add GetAccountFollowing

pull/6/head
178inaba 2017-04-14 16:41:47 +09:00
parent 0750bedc85
commit bcdd8d879b
1 changed files with 10 additions and 0 deletions

View File

@ -235,6 +235,16 @@ func (c *Client) GetAccountFollowers(id int64) ([]*Account, error) {
return accounts, nil
}
// GetAccountFollowing return following list.
func (c *Client) GetAccountFollowing(id int64) ([]*Account, error) {
var accounts []*Account
err := c.doAPI("GET", fmt.Sprintf("/api/v1/accounts/%d/following", id), nil, &accounts)
if err != nil {
return nil, err
}
return accounts, nil
}
// GetTimelineHome return statuses from home timeline.
func (c *Client) GetTimelineHome() ([]*Status, error) {
var statuses []*Status