Skip to content

Commit a64deab

Browse files
Merge pull request #76 from mohammad-rj/master
sendDirectMessage to userId without thread
2 parents 435312c + 4cb9734 commit a64deab

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

src/Client/Features/DirectFeaturesTrait.php

+21
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,27 @@ public function sendThreadMessage(string $text, string $threadId): PromiseInterf
7474
});
7575
}
7676

77+
/**
78+
* Sends a thread message.
79+
*
80+
* @param string $text
81+
* @param string $userId
82+
* @return PromiseInterface<DirectSendItemResponse>
83+
*/
84+
public function sendDirectMessage(string $text, string $userId): PromiseInterface
85+
{
86+
return $this->authenticated(function () use ($text, $userId): PromiseInterface {
87+
$request = $this->buildRequest('direct_v2/threads/broadcast/text/', new DirectSendItemResponse())
88+
->addPayloadParam('text', $text)
89+
->addPayloadParam('thread_ids', "[0]")
90+
->addPayloadParam('recipient_users', "[[$userId]]")
91+
->addUniqueContext()
92+
->addCSRFTokenAndUserId($this->session);
93+
94+
return $this->call($request);
95+
});
96+
}
97+
7798
/**
7899
* Set thread id as seen.
79100
*

src/Traits/MakeDirectRequestAccessible.php

+25
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,31 @@ public function sendThreadMessagePromise(string $text, string $threadId): Promis
9393
return $this->getClient()->sendThreadMessage($text, $threadId);
9494
}
9595

96+
/**
97+
* Sends a message to a thread.
98+
*
99+
* @param string $text
100+
* @param string $userId
101+
* @return DirectSendItemResponse
102+
* @throws InstagramException in case of an error
103+
*/
104+
public function sendDirectMessage(string $text, string $userId): DirectSendItemResponse
105+
{
106+
return PromiseUtils::wait($this->sendDirectMessagePromise($text, $userId));
107+
}
108+
109+
/**
110+
* Sends a message to a thread.
111+
*
112+
* @param string $text
113+
* @param string $userId
114+
* @return PromiseInterface<DirectSendItemResponse|InstagramException>
115+
*/
116+
public function sendDirectMessagePromise(string $text, string $userId): PromiseInterface
117+
{
118+
return $this->getClient()->sendDirectMessage($text, $userId);
119+
}
120+
96121
/**
97122
* Sets thread item as seen.
98123
*

0 commit comments

Comments
 (0)