Skip to content

Commit

Permalink
fix API::queryMessageStatus()
Browse files Browse the repository at this point in the history
  • Loading branch information
ywchang0612 committed Dec 6, 2021
1 parent 342e192 commit 916e8c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/API.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public function queryAccountPoint()
public function queryMessageStatus(array $ids)
{
$request = $this->client->newRequest(
'GET',
$this->client->buildUriWithQuery('/SmQueryGet.asp', ['msgid' => implode(',', $ids)])
'POST',
$this->client->buildUriWithQuery('/api/mtk/SmQuery', ['msgid' => implode(',', $ids)])
);

$response = $this->client->sendRequest($request);
Expand Down

0 comments on commit 916e8c4

Please sign in to comment.