Code Monkey home page Code Monkey logo

Comments (2)

pyrech avatar pyrech commented on May 17, 2024

Hello @timrabbetts, sorry for the delay. I didn't see your issue until now.

If you received no messages, I guess something is wrong for the Slack API. When there is a an error, Slack always return a 200 response, but with a property ok set to false and an error message.

With previous version (< 2.2) of this package, you needed to check the boolean property ok of the object to check if Slack really returned some data:

$results = $client->channelsHistory(['count' => 100, 'channel' => 'Cblabla']);

if (!$results->getOk()) {
    // Slack returned an error
}
$messages = $results->getMessages();

With the version >= 2.2, everything is now more simple because our SDK now throws an exception as soon as Slack return an error code.

That beiing said, in most cases, there is a problem with your token. Is it valid? Does it have the required scope to retrieve messages?

On a side note, you do not need to pass the token at each endpoint if you already provided it in the ClientFactory 😉

from slack-php-api.

pyrech avatar pyrech commented on May 17, 2024

Closing as an explanation has been given. Feel free to reopen if you need more details. Thanks 😉

from slack-php-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.