slack-php-api icon indicating copy to clipboard operation
slack-php-api copied to clipboard

:hash: PHP Slack Client based on the official OpenAPI specification

Results 22 slack-php-api issues
Sort by recently updated
recently updated
newest added

It doesn't look like this library supports the Bookmarks API: https://api.slack.com/apis/bookmarks-api Are there any plans to support it?

This is pretty much a duplicate of https://github.com/jolicode/slack-php-api/issues/126, which was closed without an actual solution. The phpdocs are not correct and it's causing very annoying problems with static code checks....

Hi, I am trying to use the normalizer to convert the protected channel object to an array but I keep getting the following error: **Fatal error: Uncaught TypeError: Argument 1...

https://github.com/jolicode/slack-php-api/blob/836217b880fedb47b34a4bcb2eccaa2502b92e57/generated/Model/ConversationsRepliesGetResponse200.php#L47-L63 ~It should not be `mixed[]` but `ObjsMessage[]`.~ It should be assigned the type other than `mixed[]`.

```json { "additionalProperties": false, "properties": { "attachments": { "items": { "additionalProperties": false, "properties": { "fallback": { "type": "string" }, "id": { "type": "integer" }, "image_bytes": { "type": "integer" }, "image_height":...

![image](https://user-images.githubusercontent.com/20613430/133806080-e03ad4ad-6b10-4988-a5c1-2ba77211e719.png) Here I expect to see throws doc block to make my Static Analyze Tool help me to process the error.

Anyone know why i'd be getting this error? JoliCode\Slack\Exception\SlackErrorResponse: Slack returned error code "no_text" in /var/www/vendor/jolicode/slack-php-api/src/HttpPlugin/SlackErrorPlugin.php:36 PHP 7.4.1 jolicode/slack-php-api - v4.1.1 running this code: ``` $client = ClientFactory::create(config('services.slack.token')); $client->chatPostMessage([ 'channel'...

bug

After setting `icon_url` during creating message, slack returns link for image in field `image_48` of field `icons`. I'm unable to get it via `ObjsMessage`.

bug

The Slack API [documentation ](https://api.slack.com/methods/auth.revoke)states GET is the preferred way, but `$client->authRevoke([ 'token' => $token, ]);` will result in "invalid_auth" I tried with curl and the POST request works fine...