Login using the postman example

-1

Good afternoon.

I'm trying to login using the postman example that it has in the repository.

link

But in the token request response I get the following response:

  

{"error": "invalid_scope"}

At this point I have the scope with the value:

  

application

And I've added client_id and client_secret , respectively.
I also have the environment file properly added.

Does anyone know what I might be doing wrong?

    
asked by anonymous 17.09.2018 / 18:10

1 answer

1

I was having the same problem. Today I tried to create another application (to have different credentials), and I already managed to get the access token.

What I changed in the new application was basically the URLs (which should have been just description!), which came to be with HTTPS. Even then, I tried to insert these URLs into the old app, and the error continued.

Better to even try to create a new application. I suppose it was something in the internal state of the first application that was not well stored, and which we could not see in Nitrogen.

Edit: Of course, I also tried to get a new Client Secret for the old app, and use the "Copy to Clipboard" button to make sure it was not a copy-paste problem. He did not give it either.

    
29.09.2018 / 11:54