I'm trying to understand how do I send authenticated Rest API requests (Data Science related)
I know that I have to add headers: 'Authorization'
'Date'
'x-content-sha256'
I know that the 'Authorization' value is conducted from encrypted values (userocid, tenancyocid, region, private key, something else?)
I couldn't find the documentation for that, only the Java SDK which is great but not for our purpose of generating the token and use it for further Rest API calls.
Where can I find it? code examples for that?
Thanks!