Troubleshooting DBMS_CLOUD access to object storage
Summary:
I tried to access the object storage from ADB (free tier) but failed with "ORA-20401: Authorization failed for URI".
- Is access to object storage supported in free tier?
- How do I verify the auth token? (i.e., Can I use the auth token to access the object storage without using the DB?)
Content (please ensure you mask any confidential information):
- I created a bucket and set visibility to public and uploaded some files there
- I generated an auth token in cloud console
- I created a credential in my free tier DB
BEGIN DBMS_CLOUD.CREATE_CREDENTIAL( credential_name => 'MY_CREDENTIAL', username => '(my OCI login username)', password => '(my auth token)' ); END; /
0