{"id":3731,"date":"2019-11-04T11:55:25","date_gmt":"2019-11-04T11:55:25","guid":{"rendered":"https:\/\/infyblog.zluck.in\/?p=3731"},"modified":"2025-07-17T09:48:15","modified_gmt":"2025-07-17T09:48:15","slug":"thingstips-to-remember-while-submitting-your-first-envato-codecyan-app","status":"publish","type":"post","link":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/","title":{"rendered":"Tips Before Submitting First Envato App"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"3731\" class=\"elementor elementor-3731\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a8e5f56 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a8e5f56\" 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-db889af\" data-id=\"db889af\" 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-2106d21 elementor-widget elementor-widget-text-editor\" data-id=\"2106d21\" 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>Last week we submitted our first app to\u00a0<a href=\"https:\/\/codecanyon.net\/\" target=\"_blank\" rel=\"noopener\">Envato &#8211; CodeCyan<\/a>\u00a0called\u00a0<a href=\"https:\/\/codecanyon.net\/item\/infylms-library-management-system-laravel-reactjs\/24884824\" target=\"_blank\" rel=\"noopener\">InfyLMS<\/a>. InfyLMS is a full-fledged library management system to manage libraries built on Laravel+ReactJS.<\/p><p>But it was not just an easy upload. When you upload an item to CodeCyan, they have a dedicated team that tests your application and reviews the code quality of your app.<\/p><p>We have faced a few problems that I want to share, so if someone is uploading his first item to CodeCyan then he\/she can review those points before submission and the chances of rejection can be reduced.<\/p><h2>1. Do not use remote CDN<\/h2><p>We have used Bootstrap in our system as a theme and we were using remote CDN URLs for JS and CSS. for e.g.<\/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-006bd0b elementor-widget elementor-widget-code-highlight\" data-id=\"006bd0b\" 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 line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>\/\/ CSS \n<link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.3.1\/css\/bootstrap.min.css\"\n\/\/ JS<\/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-1648747 elementor-widget elementor-widget-text-editor\" data-id=\"1648747\" 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>All your assets need to be offline. so download all these files via either some package manager or just go and download it and put it under the respective asset folder.<\/p><h2>2. Use Strict Mode in JS<\/h2><p>All Javascript files need to be written into Strict mode.<\/p><p>For example, you can do this with jQuery as follows:<\/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-d436c21 elementor-widget elementor-widget-code-highlight\" data-id=\"d436c21\" 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 line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>(function($) {     \n\"use strict\";     \n\/\/ Author code here \n})(jQuery);<\/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-81a975d elementor-widget elementor-widget-text-editor\" data-id=\"81a975d\" 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>Or you can put<\/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-ceab088 elementor-widget elementor-widget-code-highlight\" data-id=\"ceab088\" 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 line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>use \"strict\";<\/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-c9751f0 elementor-widget elementor-widget-text-editor\" data-id=\"c9751f0\" 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>at the start of your file if they are generated via some webpack. There is a babel plugin available which you can use with a webpack.<\/p><h2>3. Attach documentation into the main file<\/h2><p>Attach documentation into the main file which you are uploading. Create a <span style=\"color: #e83e8c;\">docs<\/span> folder into the root folder and attach full documentation to set up the application. Also, remember that this doc should work offline as well. so attach all your assets here as well.<\/p><h2>4. Have Clear &amp; Easy documentation for Non-Technical Users<\/h2><p>All the customers or buyers do not have technical knowledge that needs to be there to set up an application. so try to make your application setup as easy as possible. for e.g, create a setup wizard which executes step by step and ask for details from customers.<\/p><p>Or create a dedicated section in your documentation for Non Technical users with clear, precise and minimal steps that needs to be performed.<\/p><p>If possible, then try to give two different zip files under your main zip file, like<\/p><ul><li>dist<ul><li>Distribution which can be set up with minimal efforts for non-technical users<\/li><\/ul><\/li><li>source<ul><li>Original source file for technical users<\/li><\/ul><\/li><\/ul><p>I hope this will help new Envato Authors who are uploading their very first item.<\/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>Checklist for CodeCanyon before submitting the app. 4 Tips to take care of before submitting a script to&#8230;<\/p>\n","protected":false},"author":2,"featured_media":3734,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"postBodyCss":"","postBodyMargin":[],"postBodyPadding":[],"postBodyBackground":{"backgroundType":"classic","gradient":""},"two_page_speed":[],"footnotes":""},"categories":[123],"tags":[14],"class_list":["post-3731","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-envato","tag-tips"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Tips Before Submitting First Envato App<\/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:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tips Before Submitting First Envato App\" \/>\n<meta property=\"og:description\" content=\"Checklist for CodeCanyon before submitting the app. 4 Tips to take care of before submitting a script to...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\" \/>\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=\"2019-11-04T11:55:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-17T09:48:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.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\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\"},\"author\":{\"name\":\"InfyOm\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\"},\"headline\":\"Tips Before Submitting First Envato App\",\"datePublished\":\"2019-11-04T11:55:25+00:00\",\"dateModified\":\"2025-07-17T09:48:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\"},\"wordCount\":400,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png\",\"keywords\":[\"Tips\"],\"articleSection\":[\"Envato\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\",\"url\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\",\"name\":\"Tips Before Submitting First Envato App\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png\",\"datePublished\":\"2019-11-04T11:55:25+00:00\",\"dateModified\":\"2025-07-17T09:48:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png\",\"width\":772,\"height\":484,\"caption\":\"Envato CodeCyan App\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/infyom.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tips Before Submitting First Envato App\"}]},{\"@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":"Tips Before Submitting First Envato App","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\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/","og_locale":"en_US","og_type":"article","og_title":"Tips Before Submitting First Envato App","og_description":"Checklist for CodeCanyon before submitting the app. 4 Tips to take care of before submitting a script to...","og_url":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/","og_site_name":"Blog | InfyOm Technologies","article_publisher":"https:\/\/www.facebook.com\/infyom","article_published_time":"2019-11-04T11:55:25+00:00","article_modified_time":"2025-07-17T09:48:15+00:00","og_image":[{"width":772,"height":484,"url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.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\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#article","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/"},"author":{"name":"InfyOm","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754"},"headline":"Tips Before Submitting First Envato App","datePublished":"2019-11-04T11:55:25+00:00","dateModified":"2025-07-17T09:48:15+00:00","mainEntityOfPage":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/"},"wordCount":400,"commentCount":0,"publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"image":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png","keywords":["Tips"],"articleSection":["Envato"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/","url":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/","name":"Tips Before Submitting First Envato App","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage"},"image":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png","datePublished":"2019-11-04T11:55:25+00:00","dateModified":"2025-07-17T09:48:15+00:00","breadcrumb":{"@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#primaryimage","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/envato-submission-tips.png","width":772,"height":484,"caption":"Envato CodeCyan App"},{"@type":"BreadcrumbList","@id":"https:\/\/infyom.com\/blog\/thingstips-to-remember-while-submitting-your-first-envato-codecyan-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/infyom.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Tips Before Submitting First Envato App"}]},{"@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\/3731","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=3731"}],"version-history":[{"count":10,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/3731\/revisions"}],"predecessor-version":[{"id":8201,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/3731\/revisions\/8201"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media\/3734"}],"wp:attachment":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media?parent=3731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/categories?post=3731"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/tags?post=3731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}