How to use the AWS SDK for Laravel with Stook?

How to use the AWS SDK for Laravel with Stook? To use the Laravel SDK, follow the steps below. Install the AWS SDK for Laravel. Register package to your application Configure AWS profiles for the Stook account using the Stook keys. Installation You can use the composer to install the AWS SDK for your Laravel application composer require […]

Read More

Data Transfer to Stook with Cyberduck

Data Transfer to Stook with Cyberduck There are a few options to send data to Stook that the cloud storage solution of Medianova. One of these options is data transferring using Cyberduck that is a client for cloud storage for macOS and Windows platforms. First of all, you should install a proper Cyberduck distribution on […]

Read More

How to use the AWS SDK for PHP with Stook?

How to use the AWS SDK for PHP with Stook? To use the PHP SDK, follow the steps below. Install the AWS SDK for PHP. Configure additional AWS CLI profiles for the Stook account using the Stook keys. Below is a sample PHP file that configures the Stook Endpoint. Example Code <?php require ‘aws/aws-autoloader.php’; $s3 = […]

Read More

How do I use the AWS SDK for .NET with Stook?

The configuration steps for .NET with Stook are listed below: Download Visual Studio. Download and install the AWS Toolkit for Visual Studio. This toolkit has a lot of code examples to help you get started easily. Here is a sample code for creating a bucket: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; […]

Read More

Stook Storage User Guide for AWS CLI

Stook Storage User Guide for AWS CLI AWS CLI is a tool used for data transfer to Stook. Stook works with all S3 compatible cloud storage services. Installation You can download the AWS CLI from this link. You can follow these steps to install AWS CLI from AWS’s website. You can install Windows 32-bit and […]

Read More

How to use AWS SDK for JavaScript with Stook?

How to use AWS SDK for JavaScript with Stook? The storage service of Medianova is Stook uses the AWS SDK. For our customers to use this SDK with Stook, we have created a sample.js below. This example shows how to; -set credentials up, – create a bucket – upload a file. Install SDK var AWS […]

Read More

How do I use Stook with the AWS Java SDK?

How do I use Stook with the AWS Java SDK? To use Stook with Java, follow the steps below: Click the link for AWS Java SDK. SDK has many code examples to help you begin easily. This sample code is given below to create a bucket and upload an object. import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; […]

Read More

Using Pre-Signed URL PHP with Stook

Using Pre-Signed URL PHP with Stook You can create pre-signed URLs for any Stook operation using the getCommand method. Then by createPresignedRequest () method, you can call these URLs. Sample Code 1. require ‘vendor/autoload.php’; 2. 3. use Aws\S3\S3Client; 4. use Aws\S3\Exception\S3Exception; 5. 6. $bucket = “bucket”; 7. $key = “mykey”; 8. 9. //Create a S3Client […]

Read More

Using Pre-Marked URL NODEJS With Stook

Using Pre-Marked URL NODEJS With Stook You can create pre-signed URLs for any Stook operation and using the getSignedUrl() method you can call these URLs. Sample Code 1. var AWS = require(‘aws-sdk’); 2. var config = { 3. s3ForcePathStyle: true, 4. } 5. var credentials = new AWS.SharedIniFileCredentials({ 6. profile: ‘medianova’ 7. }); 8. AWS.config.credentials […]

Read More

What is Stook?

What is Stook? Stook is an object storage service developed by Medianova for a wide variety of application areas. It was designed as a high performance, reliable, robust, and low-cost data storage infrastructure not only for commercial use but also for personal purposes. Stook is compatible with the Simple Storage Service (S3) of Amazon Web […]

Read More