Reputation: 473
I am trying to access https://api-crt.cert.havail.sabre.com/v3/auth/token from the postman with valid base64 encoded Authorization header.
What is the valid value for username? Isn't it same which I used for registration. Document showing it as EPR in form 'user-group-domain'. Please help
I am getting an error.
{ "error": "invalid_client", "error_description": "Credentials are missing or the syntax is not correct" }
Upvotes: 0
Views: 789
Reputation: 103
It may be obvious what I am going to talk about, but you must have a SABER GDS authorized user to use this service. If you do not have an authorized web user you will not be able to make the service work.
Ask Sabre or the agency that you represent this user to access, because without this credential correctly released you will not be able to make any REST / SOAP services work.
You can download the postman functionality package from the link below:
Upvotes: 0
Reputation: 1429
Go to: https://developer.sabre.com/user/{YOUR_USER}/applications
There you'll see YOUR_USER's application
Your user is what you have below Client ID
and the password is below Client Secret
. On that you have: Base64(Base64(Client ID):Base64(Client Secret)) (this is generic, to show how it should be coded.
This will only work on CERT environment.
Upvotes: 0