If you registered a "server" or "native" app
open/redirect a browser-window tohttps://my.hidrive.com/client/authorize?client_id=<client_id>&response_type=code&scope=admin,rwEnter your Test-Account login information, allow access and the page will redirect to your registered
To get the access_token, you'll need to make a POST request using this
curl -X POST --data "client_id=<client_id>&client_secret=<client_secret>&grant_type=authorization_code&code=<code>" \ https://my.hidrive.com/oauth2/tokenThe result-json will contain an "access_token" ---> you're done!

If you registered a "browser" app
open/redirect a browser-window tohttps://my.hidrive.com/client/authorize?client_id=<client_id>&response_type=token&scope=admin,rw
Enter your Test-Account login information, allow access and the page will redirect to your registered
