| ♥ 0 | Hi, We are following the Postman Guide to work with the Web API for Jasmin here (Postman – PRIMAVERA Developers Network (primaverabss.com)) but after following these instructions we get the following error page:
Do you know if any of the URLs mentioned in the link is incorrect, or if there is any missing step?
Thank you! Marked as spam |
Comments Hi tiago, what did you do exactly?
I’m assuming you didn´t had already an account, so did you select “Create your account”?
Then, what option did you take for sign up? “Microsoft, Google, Apple or Email”? Hi Eduardo, I used Google as a sign in account. |
1 answers
| Private answer Following Eduardo's hint I created a regular account with Jasmin and got it working like this: r = requests.post(
url=self.options['auth_server_url'],
auth=(
self.options['client_id'],
self.options['client_secret']
),
data={
'grant_type': 'client_credentials',
'scope': 'application',
}
)This will return a valid token for a Client Credentials flow. Marked as spam |
