feat(onpoint): fix OP sign

This commit is contained in:
Sinh 2024-04-16 11:28:44 +07:00
parent b9f59140a7
commit 82145021a1
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ func (c *Client) requestHttpViaNats(data model.CommunicationRequestHttp, res int
} }
qs := "" qs := ""
for k, v := range data.Payload.Query { for k, v := range data.Payload.Query {
qs += k + "=" + v qs += "&" + k + "=" + v
} }
now := time.Now().Unix() now := time.Now().Unix()
ts := strconv.FormatInt(now, 10) ts := strconv.FormatInt(now, 10)