You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I check the join method inside Vluzrmos\SlackApi\Methods\Channel I found this code:
public function join($name) { return $this->method('join', ['name' => $name]); }
Here, in argument we are passing name. But when I check Slack API documentation I found this:
Required arguments:
token
channel
When I changed parameter in join method from name to channel then it is working fine. Code inside inside Vluzrmos\SlackApi\Methods\Channel after change:
public function join($name) { return $this->method('join', ['channel' => $name]); }
Can you please look into this? Also, if I'm missing something then let me know. If anyone needs additional information then let me know.
The text was updated successfully, but these errors were encountered:
I'm using this code to join the channel:
SlackChannel::join('C1234567890')
In the response I'm getting this error message:
When I check the join method inside Vluzrmos\SlackApi\Methods\Channel I found this code:
public function join($name) { return $this->method('join', ['name' => $name]); }
Here, in argument we are passing name. But when I check Slack API documentation I found this:
Required arguments:
When I changed parameter in join method from name to channel then it is working fine. Code inside inside Vluzrmos\SlackApi\Methods\Channel after change:
public function join($name) { return $this->method('join', ['channel' => $name]); }
Can you please look into this? Also, if I'm missing something then let me know. If anyone needs additional information then let me know.
The text was updated successfully, but these errors were encountered: