I am trying to access microsoft azure blob storage
through codeigniter3 . I took files from
codeigniter-azure and followed the process. I copied the files within the libraries folder to my application/libraries folder and I also added azure account_name,account_key
in application/config/config.php file.
I written code in my controller.
$this->load->library('azure');
$blob_storage = $this->azure->get_blob_storage();
var_dump($blob_storage -> listBlobs("xxx-container-name-xxx"));
When I am executing code then I am getting error Call to a member function get_blob_storage() on null
.