Giter Club home page Giter Club logo

oauth2-slack's People

Stargazers

 avatar  avatar

Forkers

glendemon

oauth2-slack's Issues

Failing with slack v2

While trying to incorporate this library into symfony, I have gone into several issues.

First of all I had to use user_scope instead of scope query parameter (identity.basic).

Secondly I had to implement my own version of SlackProvider as follows, cause it failed on missing "access_token" key.

Sharing my implement:


class SlackProvider extends AbstractProvider
{
    public function getBaseAuthorizationUrl()
    {
        return 'https://slack.com/oauth/v2/authorize';
    }

    public function getBaseAccessTokenUrl(array $params)
    {
        return 'https://slack.com/api/oauth.v2.access';
    }

    public function getResourceOwnerDetailsUrl(AccessToken $token)
    {
         return 'https://slack.com/api/users.identity';
    }

    protected function getDefaultScopes()
    {
        return [];
    }

    protected function checkResponse(ResponseInterface $response, $data)
    {
        if (isset($data['ok']) && $data['ok'] === false) {
            throw new IdentityProviderException($data['error'], null, $data);
        }
    }

    protected function createResourceOwner(array $response, AccessToken $token)
    {
        if (!isset($response['user']['id'])) {
            throw new IdentityProviderException('Missing user id', null, $response);
        }

        return new SlackResourceOwner($response);
    }


    protected function prepareAccessTokenResponse(array $result)
    {
        $result = parent::prepareAccessTokenResponse($result);

        return [
            'access_token' => $result['authed_user']['access_token'],
            'resource_owner_id' => $result['authed_user']['id']
        ];
    }

    protected function getAuthorizationHeaders($token = null)
    {
        return ['Authorization' => 'Bearer ' . $token];
    }
}

Does this library support only one flow? I was trying to login with slack in this case.

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.