{"id":9319,"date":"2025-08-25T17:21:24","date_gmt":"2025-08-25T11:51:24","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9319"},"modified":"2025-08-25T17:21:28","modified_gmt":"2025-08-25T11:51:28","slug":"a-guide-to-upload-images-to-s3","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/","title":{"rendered":"A Guide to upload Images to S3"},"content":{"rendered":"\n<p><strong>Introduction:<\/strong><\/p>\n\n\n\n<p>S3 (Simple Storage Service) is a cloud storage platform for handling file uploads, especially images. Whenever a mobile app or web application is developed, we need a reliable image storage solution. S3 provides scalable, secure and cost-effective storage with high performance.<br>In this blog, we can see the different approaches to upload images to s3.<\/p>\n\n\n\n<p><strong>Why S3 storage?<\/strong><br>This storage has lot of advantages:<br><strong><em>Scalability:<\/em><\/strong> Handles millions of images<br><strong><em>Durability: <\/em><\/strong>Has 99.99% data durability<br><strong><em>Global CDN Integration:<\/em><\/strong> Very easily intehrated for fast image delivery<br><strong><em>Cost-Effective:<\/em><\/strong> Pay only for what we use<br><strong><em>Security:<\/em><\/strong> Fine-grained access control and encryption options<br><strong><em>Integration: <\/em><\/strong>Works without any issues with other AWS services<\/p>\n\n\n\n<p><strong>Prerequisites:<\/strong><br>Before we start integrating, we must ensure we are having the following details.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>An AWS account with s3 access<\/li>\n\n\n\n<li>AWS Credentials (Access Key ID &amp; secret Access key)<\/li>\n\n\n\n<li>An S3 bucket created<\/li>\n<\/ol>\n\n\n\n<p><strong>Direct Upload from client-Side<\/strong><\/p>\n\n\n\n<p>This can be easily done by using simple java script utility function.<\/p>\n\n\n\n<p><strong><em>Step 1:<\/em><\/strong> Install AWS SDK. The command is npm install aws-sdk.<\/p>\n\n\n\n<p><strong><em>Step 2:<\/em><\/strong><br>Basic Client side Upload:<\/p>\n\n\n\n<p>Import the installed package.<br>import AWS from &#8216;aws-sdk&#8217;;<\/p>\n\n\n\n<p>We have to configure AWS.<\/p>\n\n\n\n<p>AWS.config.update({<br>accessKeyId: &#8216;YOUR_ACCESS_KEY&#8217;,<br>secretAccessKey: &#8216;YOUR_SECRET_KEY&#8217;,<br>region: &#8216;REGION USED WHILE CREATION&#8217;<br>});<\/p>\n\n\n\n<p><strong><em>Step 3:<\/em><\/strong><br>const s3 = new AWS.S3();<\/p>\n\n\n\n<p>function uploadImage(file, bucketName, key) {<br>const params = {<br>Bucket: bucketName,<br>Key: key,<br>Body: file,<br>ContentType: file.type,<br>ACL: &#8216;public-read&#8217; \/\/ Make the file publicly accessible<br>};<\/p>\n\n\n\n<p>return s3.upload(params).promise();<br>}<\/p>\n\n\n\n<p>const result = await uploadImage(file, &#8216;your-bucket-name&#8217;, <code>images\/${Date.now()}-${file.name}<\/code>);<\/p>\n\n\n\n<p>If we call the function with the required parameters we can save the images in S3 bucket we have created.<\/p>\n\n\n\n<p><strong>Server-Side Upload:<\/strong><\/p>\n\n\n\n<p>Server-side uploads can be done by using Node.js or Express. It is a better security process.<br><strong><em>Step 1:<\/em><\/strong><br>Setting Up Express Server.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"805\" height=\"357\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png\" alt=\"\" class=\"wp-image-9324\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png 805w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1-300x133.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1-768x341.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1-676x300.png 676w\" sizes=\"auto, (max-width: 805px) 100vw, 805px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server2-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"762\" height=\"416\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server2-1.png\" alt=\"\" class=\"wp-image-9325\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server2-1.png 762w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server2-1-300x164.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server2-1-550x300.png 550w\" sizes=\"auto, (max-width: 762px) 100vw, 762px\" \/><\/a><\/figure>\n\n\n\n<p><strong><em>Step 2:<\/em><\/strong><\/p>\n\n\n\n<p>Upload images.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server3.png\"><img loading=\"lazy\" decoding=\"async\" width=\"780\" height=\"810\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server3.png\" alt=\"\" class=\"wp-image-9326\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server3.png 780w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server3-289x300.png 289w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server3-768x798.png 768w\" sizes=\"auto, (max-width: 780px) 100vw, 780px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Predesigned URLs:<\/strong><\/p>\n\n\n\n<p>This is a more secure way to allow direct client uploads without exposing AWS credentials.<\/p>\n\n\n\n<p>Here attached steps to create a URL on both client and server side respectively.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4.png\"><img loading=\"lazy\" decoding=\"async\" width=\"878\" height=\"628\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4.png\" alt=\"\" class=\"wp-image-9327\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4.png 878w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4-300x215.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4-768x549.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server4-419x300.png 419w\" sizes=\"auto, (max-width: 878px) 100vw, 878px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server5.png\"><img loading=\"lazy\" decoding=\"async\" width=\"782\" height=\"827\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server5.png\" alt=\"\" class=\"wp-image-9328\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server5.png 782w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server5-284x300.png 284w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server5-768x812.png 768w\" sizes=\"auto, (max-width: 782px) 100vw, 782px\" \/><\/a><\/figure>\n\n\n\n<p><strong>Advanced Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>We can also advanced features like Image optimization and resizing for better performance.<\/li>\n\n\n\n<li>We can also include progress tracking during file upload process.<\/li>\n\n\n\n<li>Multiple file uploads are handled.<\/li>\n\n\n\n<li>Improved error handling and validation<\/li>\n<\/ul>\n\n\n\n<p><strong>Best Practices:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Considering security purposes we should always store keys as environemntal variables and should not use directly in our code either client-side or server-side.<\/li>\n\n\n\n<li>We should follow performance optimization methods.<\/li>\n\n\n\n<li>To track the progress we should include the error handling techniques.       <\/li>\n<\/ol>\n\n\n\n<p>Using these methods, we can upload images to cloud storage and can preserve them.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: S3 (Simple Storage Service) is a cloud storage platform for handling file uploads, especially images. Whenever a mobile app or web application is developed, we need a reliable image storage solution. S3 provides scalable, secure and cost-effective storage with high performance.In this blog, we can see the different approaches&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">A Guide to upload Images to S3<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":502,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9319","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction: S3 (Simple Storage Service) is a cloud storage platform for handling file uploads, especially images. Whenever a mobile app or web application is developed, we need a reliable image storage solution. S3 provides scalable, secure and cost-effective storage with high performance.In this blog, we can see the different approaches&hellip; Continue Reading A Guide to upload Images to S3\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-25T11:51:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-25T11:51:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"805\" \/>\n\t<meta property=\"og:image:height\" content=\"357\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Keerthana P\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Keerthana P\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/\"},\"author\":{\"name\":\"Keerthana P\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfb764836e66c01d0c03dd2e79ce94fa\"},\"headline\":\"A Guide to upload Images to S3\",\"datePublished\":\"2025-08-25T11:51:24+00:00\",\"dateModified\":\"2025-08-25T11:51:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/\"},\"wordCount\":416,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/server1.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/server1.png\",\"datePublished\":\"2025-08-25T11:51:24+00:00\",\"dateModified\":\"2025-08-25T11:51:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/server1.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/server1.png\",\"width\":805,\"height\":357},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/a-guide-to-upload-images-to-s3\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Guide to upload Images to S3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfb764836e66c01d0c03dd2e79ce94fa\",\"name\":\"Keerthana P\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g\",\"caption\":\"Keerthana P\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/keerthana\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction: S3 (Simple Storage Service) is a cloud storage platform for handling file uploads, especially images. Whenever a mobile app or web application is developed, we need a reliable image storage solution. S3 provides scalable, secure and cost-effective storage with high performance.In this blog, we can see the different approaches&hellip; Continue Reading A Guide to upload Images to S3","og_url":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-08-25T11:51:24+00:00","article_modified_time":"2025-08-25T11:51:28+00:00","og_image":[{"width":805,"height":357,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png","type":"image\/png"}],"author":"Keerthana P","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Keerthana P","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/"},"author":{"name":"Keerthana P","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/bfb764836e66c01d0c03dd2e79ce94fa"},"headline":"A Guide to upload Images to S3","datePublished":"2025-08-25T11:51:24+00:00","dateModified":"2025-08-25T11:51:28+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/"},"wordCount":416,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/","url":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png","datePublished":"2025-08-25T11:51:24+00:00","dateModified":"2025-08-25T11:51:28+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/08\/server1.png","width":805,"height":357},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/a-guide-to-upload-images-to-s3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A Guide to upload Images to S3"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/bfb764836e66c01d0c03dd2e79ce94fa","name":"Keerthana P","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a2fbfc942637609ceefb9cbdeedd3fe92320c9f5212098280c846d6d8597088c?s=96&r=g","caption":"Keerthana P"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/keerthana\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2qj","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9319","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/502"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9319"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9319\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}