Skip to content

Commit

Permalink
GetConnectedIDList 함수 수정 (#1)
Browse files Browse the repository at this point in the history
CID 리스트 조회 시 필수는 아니지만 요청 파라미터가 존재하기 때문에
map 타입의 파라미터 추가
  • Loading branch information
dc7303 committed Jul 9, 2020
1 parent 8e70437 commit 16a77ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easycodefgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ func (self *Codef) GetAccountList(serviceType ServiceType, param map[string]inte
}

// 클라이언트 정보로 등록된 모든 connectedID 목록 조회
func (self *Codef) GetConnectedIDList(serviceType ServiceType) (string, error) {
return self.RequestProduct(PathGetCIDList, serviceType, nil)
func (self *Codef) GetConnectedIDList(serviceType ServiceType, param map[string]interface{}) (string, error) {
return self.RequestProduct(PathGetCIDList, serviceType, param)
}

// 토큰 발급
Expand Down

0 comments on commit 16a77ce

Please sign in to comment.