Generating an OAuth2 client doens't give me client id and client secret

When i generate an oauth client with a propre description it just shows me a dialog window with an ok button and nothing else. Firefox 31.0 / archlinux updated

Clicking the button to create a new oauth2 client does not show a dialog box? I just tested on chrome and firefox. are you sure there isn’t something wrong with your browser?

Actually i was wrong, the oauth dialog appears on chrome but not on firefox. And anyways I’m unable to get the authorization token 'cause my ‘authentication credentials where not provided’, even though I checked them rigorously and am sure they are the same the site gave me. I’ve even tryed making another oauth2 client and another application-specific password and sending another authentication request with those credentials, but that didn’t work either.

You’re going to have to show me what you’ve done as this works for me and lots of other folks at the moment.

curl --include --request POST --header "Content-Type: application/x-www-form-urlencoded" --data-binary "client_id=<my_client_id>&client_secret=<my_secret>&grant_type=password&username=bercio&password=<my_password_app>" http://onlinego.com/api/v1/oauth2/access_token

You realize we are online-go.com and not onlinego.com right? :smile:

Also… you have the url wrong after that access_token is located here:

http://online-go.com/oauth2/access_token

you can find out more here:

http://docs.ogs.apiary.io/

1 Like

ahha yeah that was a typo in the post, sorry. RIght the problem was with the /api/v1. Yeah I read the docs but since it used the mock api i taught i had to add /api/v1, sorry for that. Now everything works, thanks again.

2 Likes