Alexander Hitrov

Results 42 comments of Alexander Hitrov

weird, regret to hear that. did you have any AMD instances or other resources which could possibly violate their policy? the worst thing is that Oracle REST API doesn't provide...

That would be strange because official REST API is used, there are no any violations that I could think of

In fact you pointed in a way that maybe I’m gonna check official SDK implementation, maybe some more headers can be added to “pretend” as there’s no PHP one, I...

I believe the proper region name must be `eu-amsterdam-1`. and if for example there's only one availability domain within this region, you can completely skip setting `OCI_AVAILABILITY_DOMAIN`

So seems you have them already, no need to create unneeded instance beforehand

I believe it’s straightforward, something wrong with private key (file), try local (path) if you’re using URL and vice versa otherwise

Try also setting file permissions `sudo chmod 777 /path/to/file.pem`

Hey, try logging into OCI web console first

@IvsonEmidio How frequently did you configure the script to execute?

I managed to at least PutObject using this ```php $encodedObjectName = rawurlencode($objectName); $baseUrl = "https://objectstorage.$config->region.oraclecloud.com/n/$namespaceName/b/$bucketName/o/$encodedObjectName"; // ... $signer = new Signer( $config->tenancyId, $config->ociUserId, $config->keyFingerPrint, $config->privateKeyFilename ); $headers = $signer->getHeaders($url, 'PUT',...