{"id":21863,"date":"2015-06-28T18:04:56","date_gmt":"2015-06-28T12:34:56","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=21863"},"modified":"2015-08-03T11:33:55","modified_gmt":"2015-08-03T06:03:55","slug":"upload-file-on-amazon-s3-using-amazon-sdk","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/","title":{"rendered":"Upload File on Amazon S3 Using Amazon SDK"},"content":{"rendered":"<p>Amazon Simple Storage Service (Amazon S3), provides <a title=\"AWS Architects and Consultants Team\" href=\"https:\/\/2thenew.xyz\/devops-automation-consulting\">developers and IT teams<\/a> with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web.<\/p>\n<p><strong>Requirements:<\/strong><\/p>\n<ul>\n<li>iOS 7 and later<\/li>\n<li>Xcode 5 and later<\/li>\n<li>Version 2 of the AWS SDK for iOS (Download from http:\/\/aws.amazon.com\/mobile\/sdk\/ )<\/li>\n<li>AWS Account<\/li>\n<\/ul>\n<p><strong>Setup :<\/strong><\/p>\n<ol>\n<li>Add AWSiOSSDKv2.framework from AWS SDK frameworks directory. If you want to use Amazon Cognito Sync, you also need to add the AWSCognitoSync.framework, which is in the frameworks\/extras directory.<\/li>\n<li>Include following frameworks from AWS SDK third-party directory\n<ul>\n<li>Bolts.framework (If your application uses the Facebook SDK, you won&#8217;t need this framework, as it&#8217;s already included with the Facebook SDK.)<\/li>\n<li>GZIP.framework<\/li>\n<li>Mantle.framework<\/li>\n<li>Reachability.framework<\/li>\n<li>TMCache.framework<\/li>\n<li>UICKeyChainStore.framework<\/li>\n<li>XMLDictionary.framework<\/li>\n<\/ul>\n<\/li>\n<li>Add the following JSON files, located in the service defintions directory, into your project.\n<ul>\n<li>autoscaling-2011-01-01.json<\/li>\n<li>cib-2014-06-30.json<\/li>\n<li>css-2014-06-30.json<\/li>\n<li>dynamodb-2012-08-10.json<\/li>\n<li>ec2-2014-06-15.json<\/li>\n<li>elasticloadbalancing-2012-06-01.json<\/li>\n<li>email-2010-12-01.json<\/li>\n<li>kinesis-2013-12-02.json<\/li>\n<li>mobileanalytics-2014-06-30.json<\/li>\n<li>monitoring-2010-08-01.json<\/li>\n<li>s3-2006-03-01.json<\/li>\n<li>sdb-2009-04-15.json<\/li>\n<li>sns-2010-03-31.json<\/li>\n<li>sqs-2012-11-05.json<\/li>\n<li>sts-2011-06-15.json<\/li>\n<\/ul>\n<\/li>\n<li>Add following Libraries\n<ul>\n<li>libsqlite3.dylib<\/li>\n<li>libz.dylib<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p><strong>Create an S3 Bucket<\/strong><\/p>\n<p>Amazon S3 stores your resources in buckets\u2014cloud storage containers that live in a specific region. Each S3 bucket must have a globally unique name.<br \/>\nLet&#8217;s use the AWS Management Console to create an S3 bucket.<\/p>\n<ol>\n<li>Sign in to the Amazon account and create bucket.<\/li>\n<li>Enter a bucket name, select a region, and click create.<\/li>\n<\/ol>\n<p><strong>Configure Credentials :<\/strong><\/p>\n<ul>\n<li>Import the AWSCore header in the application delegate.<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\n  #import &lt;AWSiOSSDKv2\/AWSCore.h&gt;<br \/>\n [\/code]<\/p>\n<ul>\n<li>Create a default service configuration by adding the following code in <strong>application: didFinishLaunchingWithOptions: application delegate method:<\/strong><\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nAWSStaticCredentialsProvider *credentialsProvider = [AWSStaticCredentialsProvider credentialsWithAccessKey: AWSAccessKey secretKey : AWSSecretKey];<\/p>\n<p>AWSServiceConfiguration *configuration = [AWSServiceConfiguration configurationWithRegion:AWSRegionAPSoutheast1 credentialsProvider:credentialsProvider];<\/p>\n<p>[AWSServiceManager defaultServiceManager].defaultServiceConfiguration = configuration;<br \/>\n[\/code]<\/p>\n<p><strong>Upload File :<\/strong><\/p>\n<ul>\n<li>Import following header into your viewController file:<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\n#import &lt;AWSiOSSDKv2\/S3.h&gt;<br \/>\n[\/code]<\/p>\n<ul>\n<li>To use the S3 TransferManager, we first need to create a TransferManager client ( AWSS3TransferManager class is our entry point to the high-level S3 API ):<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nAWSS3TransferManager *transferManager = [AWSS3TransferManager defaultS3TransferManager];<br \/>\n[\/code]<\/p>\n<ul>\n<li>For uploading a file you need to create a upload request:<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nNSString *filePath = @&quot;Path of document\u201d ;<br \/>\nAWSS3TransferManagerUploadRequest *uploadRequest = [AWSS3TransferManagerUploadRequest new];<br \/>\nuploadRequest.bucket = @&quot;Your Bucket Name&quot;;<br \/>\nuploadRequest.key = @&quot;File Name with which you want to save file in S3 bucket&quot;;<br \/>\nuploadRequest.body = [NSURL fileURLWithPath:filePath];<br \/>\n[\/code]<\/p>\n<ul>\n<li>After creating the request, we can now pass it to the upload method of the TransferManager client<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\n[[transferManager upload:uploadRequest] continueWithExecutor:[BFExecutor mainThreadExecutor] withBlock:^id(BFTask*task) {<br \/>\n\tif (task.error) {<br \/>\n\t\tNSLog(@&quot;Error: %@&quot;, task.error);<br \/>\n\t}<br \/>\n\telse {<br \/>\n\t\t\/\/ The file uploaded successfully.<br \/>\n\t}  <\/p>\n<p>\treturn nil;<br \/>\n}];<br \/>\n[\/code]<\/p>\n<p>Run your app and check out its working fine. Congratulations! your file has uploaded on Amazon S3 Bucket.<\/p>\n<p>Want to learn about how to download file with progress status from Amazon S3? Keep reading the <a title=\"next part\" href=\"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/\" target=\"_blank\">next part<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the [&hellip;]<\/p>\n","protected":false},"author":172,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":7,"footnotes":""},"categories":[1400,1772],"tags":[],"class_list":["post-21863","post","type-post","status-publish","format-standard","hentry","category-ios","category-mobility"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Ashu Baweja\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"ios\" \/>\n\t\t<meta property=\"article:tag\" content=\"mobility\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-06-28T12:34:56+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-08-03T06:03:55+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#article\",\"name\":\"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog\",\"headline\":\"Upload File on Amazon S3 Using Amazon SDK\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ashu-bawejaintelligrape-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-06-28T18:04:56+05:30\",\"dateModified\":\"2015-08-03T11:33:55+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#webpage\"},\"articleSection\":\"iOS, Mobility\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/ios\\\/#listItem\",\"name\":\"iOS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/ios\\\/#listItem\",\"position\":2,\"name\":\"iOS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/ios\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#listItem\",\"name\":\"Upload File on Amazon S3 Using Amazon SDK\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#listItem\",\"position\":3,\"name\":\"Upload File on Amazon S3 Using Amazon SDK\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/ios\\\/#listItem\",\"name\":\"iOS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ashu-bawejaintelligrape-com\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ashu-bawejaintelligrape-com\\\/\",\"name\":\"Ashu Baweja\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d1e832c32f554b88da3e8f8fd33424aa41115be6faff0b06e6a94ebc2c2d0cba?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Ashu Baweja\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/\",\"name\":\"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog\",\"description\":\"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/upload-file-on-amazon-s3-using-amazon-sdk\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ashu-bawejaintelligrape-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ashu-bawejaintelligrape-com\\\/#author\"},\"datePublished\":\"2015-06-28T18:04:56+05:30\",\"dateModified\":\"2015-08-03T11:33:55+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog","description":"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the","canonical_url":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#article","name":"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog","headline":"Upload File on Amazon S3 Using Amazon SDK","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2015-06-28T18:04:56+05:30","dateModified":"2015-08-03T11:33:55+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#webpage"},"articleSection":"iOS, Mobility"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/ios\/#listItem","name":"iOS"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/ios\/#listItem","position":2,"name":"iOS","item":"https:\/\/2thenew.xyz\/blog\/category\/ios\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#listItem","name":"Upload File on Amazon S3 Using Amazon SDK"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#listItem","position":3,"name":"Upload File on Amazon S3 Using Amazon SDK","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/ios\/#listItem","name":"iOS"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/","name":"Ashu Baweja","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d1e832c32f554b88da3e8f8fd33424aa41115be6faff0b06e6a94ebc2c2d0cba?s=96&d=mm&r=g","width":96,"height":96,"caption":"Ashu Baweja"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/","name":"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog","description":"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/#author"},"datePublished":"2015-06-28T18:04:56+05:30","dateModified":"2015-08-03T11:33:55+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog","og:description":"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the","og:url":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":["ios","mobility"],"article:published_time":"2015-06-28T12:34:56+00:00","article:modified_time":"2015-08-03T06:03:55+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Upload File on Amazon S3 Using Amazon SDK | TO THE NEW Blog","twitter:description":"Amazon Simple Storage Service (Amazon S3), provides developers and IT teams with secure, durable, highly-scalable object storage. Amazon S3 is easy to use, with a simple web services interface to store and retrieve any amount of data from anywhere on the web. Requirements: iOS 7 and later Xcode 5 and later Version 2 of the","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"21863","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:25:26","updated":"2024-02-29 08:34:23","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/ios\/\" title=\"iOS\">iOS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUpload File on Amazon S3 Using Amazon SDK\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"iOS","link":"https:\/\/2thenew.xyz\/blog\/category\/ios\/"},{"label":"Upload File on Amazon S3 Using Amazon SDK","link":"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/21863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/172"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=21863"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/21863\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=21863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=21863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=21863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}