Slack api rtm.start missing_scope needs client

I have an access token and when I try to post rtm.start I get below error:

{
    error = "missing_scope";
    needed = client;
    ok = 0;
    provided = "identify,read,post";
}

      

I have set the area for read, post, identity in the authorization api. I have read the api doc over and over again. Only rtm.start mentions the client area. But in the oauth doc I didn't find a client-side option. So what happened?

+3


source to share


1 answer


you need to do this before you get the token.



when you make the initial application connection request, include & scope = "identity, read, publish, client"

+6


source







All Articles