{"id":3660,"date":"2021-07-16T12:22:24","date_gmt":"2021-07-16T12:22:24","guid":{"rendered":"https:\/\/infyblog.zluck.in\/?p=3660"},"modified":"2025-07-17T07:43:03","modified_gmt":"2025-07-17T07:43:03","slug":"how-to-generate-pre-signed-url-from-s3-bucket","status":"publish","type":"post","link":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/","title":{"rendered":"How to generate pre-signed URL from s3 bucket ?"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"3660\" class=\"elementor elementor-3660\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8ed6ade elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8ed6ade\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-52176d9\" data-id=\"52176d9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\n\t\t<div class=\"elementor-element elementor-element-99de111 elementor-widget elementor-widget-text-editor\" data-id=\"99de111\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>People nowadays are becoming more intelligent, so better to protect our application&#8217;s content\/data from those who are calling themself hackers.<\/p><p>One of the best examples is the data URLs from AWS buckets. it&#8217;s not a good idea to store sensitive data into a public AWS Bucket, as the URL is accessible by the people.<\/p><p>Of Course, you can store profile avatars and others data to the public bucket&#8217;s that not contains any confidential information. so that&#8217;s fine.<\/p><p>But when it&#8217;s about confidential information like PAN CARD Details, AADHAR Card Details, Bank Informations we Must Recommend using\u00a0<a style=\"font-weight: var( --e-global-typography-text-font-weight ); background-color: #ffffff;\" href=\"https:\/\/repost.aws\/knowledge-center\/secure-s3-resources\" target=\"_blank\" rel=\"noopener\">AWS Protected Bucket.<\/a><\/p><p>In this tutorial, we are going to show that how we can prevent that kind of case, Or how we can integrate AWS Protected Bucket in our<a href=\"https:\/\/laravel.com\/docs\/8.x\" target=\"_blank\" rel=\"noopener\"> Laravel<\/a>\u00a0Application.<\/p><p>The following code will help you to generate a pre-signed AWS URL that will prevent our data, that URL is non-guessable and it will expire within some minutes\/hours specified by us.<\/p><h5>So let&#8217;s start with some code :<\/h5>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f708b4 elementor-widget elementor-widget-code-highlight\" data-id=\"7f708b4\" data-element_type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-javascript \">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>$s3 = \\Storage::disk(config('filesystems.s3_protected_disk'));\r\n$client = $s3->getDriver()->getAdapter()->getClient();\r\n$expiry = \"+1 minutes\";\r\n$command = $client->getCommand('GetObject', [\r\n  'Bucket' => \\Config::get('filesystems.disks. s3_protected_disk.bucket'),\r\n      'Key'    => 'Path to your file',\r\n    ]);\r\n$request = $client->createPresignedRequest($command, $expiry);\r\n    return (string) $request->getUrl();<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34b214f elementor-widget elementor-widget-text-editor\" data-id=\"34b214f\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>So here we have created an s3 instance and it&#8217;s stored on the $s3 variable, we have specified the expiry time as 1 minute so the given URL for data will be expired within a minute.<\/p><p>Also, we have to specify the bucket name and path to our protected file to generate AWS pre-signed URL.<\/p><p>It will return the pre-signed URL and its looks like as the following URL.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d192b91 elementor-widget elementor-widget-code-highlight\" data-id=\"d192b91\" data-element_type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-javascript \">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>https:\/\/pre-signed.s3.au-west-2.amazonaws.com\/image.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=xxxxxxxx%2F20180210%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20210210T171315Z&X-Amz-Expires=60&X-Amz-Signature=xxxxxxxx&X-Amz-SignedHeaders=host<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5234469 elementor-widget elementor-widget-text-editor\" data-id=\"5234469\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Hope this helps.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t\n    <div class=\"xs_social_share_widget xs_share_url after_content \t\tmain_content  wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content\">\n\n\t\t\n        <ul>\n\t\t\t        <\/ul>\n    <\/div> \n","protected":false},"excerpt":{"rendered":"<p>People nowadays are becoming more intelligent, so better to protect our application&#8217;s content\/data from those who&#8230;<\/p>\n","protected":false},"author":2,"featured_media":3662,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"postBodyCss":"","postBodyMargin":[],"postBodyPadding":[],"postBodyBackground":{"backgroundType":"classic","gradient":""},"two_page_speed":[],"footnotes":""},"categories":[9],"tags":[39,117],"class_list":["post-3660","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-laravel","tag-laravel","tag-s3-bucket"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to generate pre-signed URL from s3 bucket ?<\/title>\n<meta name=\"description\" content=\"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to generate pre-signed URL from s3 bucket ?\" \/>\n<meta property=\"og:description\" content=\"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog | InfyOm Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/infyom\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-16T12:22:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-17T07:43:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png\" \/>\n\t<meta property=\"og:image:width\" content=\"772\" \/>\n\t<meta property=\"og:image:height\" content=\"484\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InfyOm\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:site\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InfyOm\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\"},\"author\":{\"name\":\"InfyOm\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\"},\"headline\":\"How to generate pre-signed URL from s3 bucket ?\",\"datePublished\":\"2021-07-16T12:22:24+00:00\",\"dateModified\":\"2025-07-17T07:43:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\"},\"wordCount\":253,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png\",\"keywords\":[\"Laravel\",\"S3 bucket\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\",\"url\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\",\"name\":\"How to generate pre-signed URL from s3 bucket ?\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png\",\"datePublished\":\"2021-07-16T12:22:24+00:00\",\"dateModified\":\"2025-07-17T07:43:03+00:00\",\"description\":\"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png\",\"width\":772,\"height\":484,\"caption\":\"How to generate pre-signed URL from s3 bucket ?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/infyom.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to generate pre-signed URL from s3 bucket ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/infyom.com\/blog\/#website\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"name\":\"Blog | InfyOm Technologies\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/infyom.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/infyom.com\/blog\/#organization\",\"name\":\"InfyOm Technologies\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"width\":88,\"height\":41,\"caption\":\"InfyOm Technologies\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/infyom\",\"https:\/\/x.com\/InfyOm\",\"https:\/\/www.instagram.com\/infyomtechnologies\/\",\"https:\/\/in.linkedin.com\/company\/infyom-technologies\",\"https:\/\/github.com\/infyomlabs\",\"https:\/\/x.com\/infyom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\",\"name\":\"InfyOm\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"caption\":\"InfyOm\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to generate pre-signed URL from s3 bucket ?","description":"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.","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:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/","og_locale":"en_US","og_type":"article","og_title":"How to generate pre-signed URL from s3 bucket ?","og_description":"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.","og_url":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/","og_site_name":"Blog | InfyOm Technologies","article_publisher":"https:\/\/www.facebook.com\/infyom","article_published_time":"2021-07-16T12:22:24+00:00","article_modified_time":"2025-07-17T07:43:03+00:00","og_image":[{"width":772,"height":484,"url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png","type":"image\/png"}],"author":"InfyOm","twitter_card":"summary_large_image","twitter_creator":"@InfyOm","twitter_site":"@InfyOm","twitter_misc":{"Written by":"InfyOm","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#article","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/"},"author":{"name":"InfyOm","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754"},"headline":"How to generate pre-signed URL from s3 bucket ?","datePublished":"2021-07-16T12:22:24+00:00","dateModified":"2025-07-17T07:43:03+00:00","mainEntityOfPage":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/"},"wordCount":253,"commentCount":0,"publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"image":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png","keywords":["Laravel","S3 bucket"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/","url":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/","name":"How to generate pre-signed URL from s3 bucket ?","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage"},"image":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png","datePublished":"2021-07-16T12:22:24+00:00","dateModified":"2025-07-17T07:43:03+00:00","description":"Learn how to generate pre-signed URLs from an S3 bucket, cover setup, IAM policies, expiration, secure access, and usage examples.","breadcrumb":{"@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#primaryimage","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/how-to-generate-pre-signed-url-from-s3-bucket.png","width":772,"height":484,"caption":"How to generate pre-signed URL from s3 bucket ?"},{"@type":"BreadcrumbList","@id":"https:\/\/infyom.com\/blog\/how-to-generate-pre-signed-url-from-s3-bucket\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/infyom.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to generate pre-signed URL from s3 bucket ?"}]},{"@type":"WebSite","@id":"https:\/\/infyom.com\/blog\/#website","url":"https:\/\/infyom.com\/blog\/","name":"Blog | InfyOm Technologies","description":"","publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/infyom.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/infyom.com\/blog\/#organization","name":"InfyOm Technologies","url":"https:\/\/infyom.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","width":88,"height":41,"caption":"InfyOm Technologies"},"image":{"@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/infyom","https:\/\/x.com\/InfyOm","https:\/\/www.instagram.com\/infyomtechnologies\/","https:\/\/in.linkedin.com\/company\/infyom-technologies","https:\/\/github.com\/infyomlabs","https:\/\/x.com\/infyom"]},{"@type":"Person","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754","name":"InfyOm","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","caption":"InfyOm"}}]}},"_links":{"self":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/3660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/comments?post=3660"}],"version-history":[{"count":13,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/3660\/revisions"}],"predecessor-version":[{"id":8158,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/3660\/revisions\/8158"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media\/3662"}],"wp:attachment":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media?parent=3660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/categories?post=3660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/tags?post=3660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}