{"id":22594,"date":"2015-07-08T07:41:45","date_gmt":"2015-07-08T02:11:45","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=22594"},"modified":"2015-07-08T10:16:54","modified_gmt":"2015-07-08T04:46:54","slug":"aws-s3-file-download-with-progress-status-using-amazon-sdk","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/","title":{"rendered":"AWS S3 file download with progress status using Amazon SDK"},"content":{"rendered":"<p>In the <a title=\"first part\" href=\"https:\/\/2thenew.xyz\/blog\/upload-file-on-amazon-s3-using-amazon-sdk\/\" target=\"_blank\">first part<\/a> you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from<a href=\"https:\/\/2thenew.xyz\/devops-aws\"> Amazon S3<\/a>.<\/p>\n<p><strong>Getting Started :<\/strong><\/p>\n<ul>\n<li>Import following headers into your viewController:<\/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>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 \/>\n  AWSS3TransferManager *transferManager = [AWSS3TransferManager defaultS3TransferManager];<br \/>\n[\/code]<\/p>\n<p><strong>Download File:<\/strong><\/p>\n<p>To download a file from a bucket, we have to construct the request using AWSS3TransferManagerDownloadRequest and then pass this request to the download method of client. First you need to create an NSURL that we&#8217;ll use for a download location.<\/p>\n<ul>\n<li>Construct the NSURL for the download location<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nNSString *downloadingFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@&quot;name of file with which you want to save example :image.jpg&quot;];<br \/>\nNSURL *downloadingFileURL = [NSURL fileURLWithPath:downloadingFilePath];<br \/>\n[\/code]<\/p>\n<ul>\n<li>Construct the download request<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nAWSS3TransferManagerDownloadRequest *downloadRequest = [AWSS3TransferManagerDownloadRequest new];<br \/>\ndownloadRequest.bucket = @&quot;your S3 bucket name&quot;;<br \/>\ndownloadRequest.key = @&quot;key with which you have uploaded the file&quot;;<br \/>\ndownloadRequest.downloadingFileURL = downloadingFileURL;<br \/>\n[\/code]<\/p>\n<ul>\n<li>Now pass the download request to the download: method of the TransferManager client.<\/li>\n<\/ul>\n<p>[code language=&#8221;objc&#8221;]<br \/>\n[[transferManager download : downloadRequest] continueWithExecutor : [BFExecutor mainThreadExecutor] withBlock: ^id(BFTask*task) {<br \/>\n\tif (task.error){   <\/p>\n<p>\t\tNSLog(@&quot;Error: %@&quot;, task.error);<br \/>\n    }<br \/>\n\telse{<br \/>\n  \t    \/\/ File downloaded successfully.<br \/>\n    }  <\/p>\n<p>\treturn nil;<br \/>\n}];<br \/>\n[\/code]<\/p>\n<p><strong>Track Progress :<\/strong><\/p>\n<p>Using the uploadProgress and downloadProgress blocks, you can track the progress of object transfers.<\/p>\n<p><strong>Upload Progress:<\/strong><\/p>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nuploadRequest.uploadProgress =  ^(int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend){<br \/>\n\tdispatch_async(dispatch_get_main_queue(), ^{         <\/p>\n<p>\t\t\/\/ upload progress<br \/>\n});<br \/>\n[\/code]<\/p>\n<p><strong>Download Progress:<\/strong><\/p>\n<p>[code language=&#8221;objc&#8221;]<br \/>\ndownloadRequest.downloadProgress = ^(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite){<br \/>\n   \tdispatch_async(dispatch_get_main_queue(), ^{        <\/p>\n<p>\t\t\/\/ download progress<br \/>\n });<br \/>\n[\/code]<\/p>\n<p>Run your app and check out its working fine. Congratulations! your file has downloaded from Amazon S3 Bucket.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&#8221;objc&#8221;] #import &lt;AWSiOSSDKv2\/AWSCore.h&gt; [\/code] To use the S3 TransferManager, we first need to [&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":27,"footnotes":""},"categories":[1400,1772],"tags":[],"class_list":["post-22594","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=\"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&quot;objc&quot;] #import [\/code] To use the S3 TransferManager, we first need to\" \/>\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\/aws-s3-file-download-with-progress-status-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=\"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&quot;objc&quot;] #import [\/code] To use the S3 TransferManager, we first need to\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-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-07-08T02:11:45+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-07-08T04:46:54+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=\"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&quot;objc&quot;] #import [\/code] To use the S3 TransferManager, we first need to\" \/>\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\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#article\",\"name\":\"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog\",\"headline\":\"AWS S3 file download with progress status 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-07-08T07:41:45+05:30\",\"dateModified\":\"2015-07-08T10:16:54+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#webpage\"},\"articleSection\":\"iOS, Mobility\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-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\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#listItem\",\"name\":\"AWS S3 file download with progress status using Amazon SDK\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#listItem\",\"position\":3,\"name\":\"AWS S3 file download with progress status 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\\\/aws-s3-file-download-with-progress-status-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\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-using-amazon-sdk\\\/\",\"name\":\"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog\",\"description\":\"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=\\\"objc\\\"] #import [\\\/code] To use the S3 TransferManager, we first need to\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/aws-s3-file-download-with-progress-status-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-07-08T07:41:45+05:30\",\"dateModified\":\"2015-07-08T10:16:54+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":"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog","description":"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=\"objc\"] #import [\/code] To use the S3 TransferManager, we first need to","canonical_url":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#article","name":"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog","headline":"AWS S3 file download with progress status using Amazon SDK","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/ashu-bawejaintelligrape-com\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2015-07-08T07:41:45+05:30","dateModified":"2015-07-08T10:16:54+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#webpage"},"articleSection":"iOS, Mobility"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-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\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#listItem","name":"AWS S3 file download with progress status using Amazon SDK"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#listItem","position":3,"name":"AWS S3 file download with progress status 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\/aws-s3-file-download-with-progress-status-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\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/","name":"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog","description":"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=\"objc\"] #import [\/code] To use the S3 TransferManager, we first need to","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-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-07-08T07:41:45+05:30","dateModified":"2015-07-08T10:16:54+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":"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog","og:description":"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&quot;objc&quot;] #import [\/code] To use the S3 TransferManager, we first need to","og:url":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-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-07-08T02:11:45+00:00","article:modified_time":"2015-07-08T04:46:54+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"AWS S3 file download with progress status using Amazon SDK | TO THE NEW Blog","twitter:description":"In the first part you learned how to setup Amazon SDK and upload file on S3. In this part, you will learn how to download file with progress status from Amazon S3. Getting Started : Import following headers into your viewController: [code language=&quot;objc&quot;] #import [\/code] To use the S3 TransferManager, we first need to","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"22594","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:12:49","updated":"2024-02-29 08:24:22","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\tAWS S3 file download with progress status 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":"AWS S3 file download with progress status using Amazon SDK","link":"https:\/\/2thenew.xyz\/blog\/aws-s3-file-download-with-progress-status-using-amazon-sdk\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/22594","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=22594"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/22594\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=22594"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=22594"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=22594"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}