{"id":1479,"date":"2013-03-20T13:57:19","date_gmt":"2013-03-20T13:57:19","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=1479"},"modified":"2015-03-26T10:45:12","modified_gmt":"2015-03-26T10:45:12","slug":"openerp-7-0-connection-with-php-using-xml-rpc","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/","title":{"rendered":"OpenERP 7.0 connection with PHP using XML-RPC"},"content":{"rendered":"<p><a href=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/03\/xmlrpc.jpg\"><img decoding=\"async\" class=\"aligncenter size-full wp-image-1545\" alt=\"OpenERP xmlrpc\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/03\/xmlrpc.jpg\" width=\"527\" height=\"270\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/03\/xmlrpc.jpg 527w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/03\/xmlrpc-300x153.jpg 300w\" sizes=\"(max-width: 527px) 100vw, 527px\" loading=\"lazy\" \/><\/a><\/p>\n<p>In order to connect with openerp first of all we need <strong>XML-RPC<\/strong> for <strong>PHP<\/strong>, download the\u00a0latest stable release\u00a0from\u00a0<a href=\"http:\/\/phpxmlrpc.sourceforge.net\/\">http:\/\/phpxmlrpc.sourceforge.net\/<\/a>.<\/p>\n<p>Now extract it and get the file i.e inside lib folder named as xmlrpc.inc.<\/p>\n<p>Include this file in your own php file, so that we can use it&#8217;s property.<\/p>\n<div class=\"alert alert-info\" role=\"alert\">Here are the steps to connect OpenERP with PHP<\/div>\n<p style=\"text-align: left;\">\u00a0<strong>1)<\/strong> Before doing coding we need openERP base URL and it&#8217;s credentials(database_name, user_name, password)<\/p>\n<p><strong>2)<\/strong> Now we will start with the coding<\/p>\n<pre class=\"brush:php\">include('xmlrpc.inc');\r\n\r\n$dbname = 'dbname';\r\n$user = 'admin';\r\n$pwd = 'pwd';\r\n$url = 'http:\/\/demo.openerp.com:8069'; \/\/ it's demo server url\r\n$sock = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/common\");\r\n\r\n$sock_msg = new xmlrpcmsg('login');\r\n$sock_msg-&gt;addParam(new xmlrpcval($dbname, \"string\"));\r\n$sock_msg-&gt;addParam(new xmlrpcval($user, \"string\"));\r\n$sock_msg-&gt;addParam(new xmlrpcval($pwd, \"string\"));\r\n$sock_resp = $sock-&gt;send($sock_msg);\r\n\r\nif ($sock_resp-&gt;errno != 0){\r\necho  'error';\r\n}else{\r\n\r\n$sock_val = $sock_resp-&gt;value();\r\n\r\n$user_id = $sock_val-&gt;scalarval();\r\n\r\n}<\/pre>\n<p><strong>Note:-<\/strong>\u00a0 when $sock_resp-&gt;errno value is equals to 0 then it&#8217;s connected with openERP otherwise something wrong in\u00a0configuration.<\/p>\n<p><strong>3)<\/strong> now you are successfully connected with openERP, now we will use \u00a0$user_id for further operation.<\/p>\n<p><strong>4)<\/strong> here is the simple code to create a customer&#8230;<\/p>\n<pre class=\"brush:php\">$customer_array = array(\r\n'name'=&gt;new xmlrpcval('Demo Customer', \"string\")\r\n);\r\n$client = new xmlrpc_client(\"http:\/\/demo.openerp.com:8069\/xmlrpc\/object\");\r\n\r\n$msg = new xmlrpcmsg('execute');\r\n$msg-&gt;addParam(new xmlrpcval(\"dbname\", \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval($user_id, \"int\"));\r\n$msg-&gt;addParam(new xmlrpcval(\"demo\", \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval(\"res.partner\", \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval(\"create\", \"string\"));\r\n$msg-&gt;addParam(new xmlrpcval($customer_array, \"struct\"));\r\n$resp = $client-&gt;send($msg);\r\n$customer_id = $resp-&gt;value()-&gt;scalarval();<\/pre>\n<p>now the next operations like write, read, search etc..<em id=\"__mceDel\">\u00a0will discussed in my next post.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In order to connect with openerp first of all we need XML-RPC for PHP, download the\u00a0latest stable release\u00a0from\u00a0http:\/\/phpxmlrpc.sourceforge.net\/. Now extract it and get the file i.e inside lib folder named as xmlrpc.inc. Include this file in your own php file, so that we can use it&#8217;s property. Here are the steps to connect OpenERP with <a href=\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":9,"featured_media":22115,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[166],"tags":[2063,2057,278],"class_list":["post-1479","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-openerp","tag-openerp","tag-php","tag-xml-rpc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog<\/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:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In order to connect with openerp first of all we need XML-RPC for PHP, download the\u00a0latest stable release\u00a0from\u00a0http:\/\/phpxmlrpc.sourceforge.net\/. Now extract it and get the file i.e inside lib folder named as xmlrpc.inc. Include this file in your own php file, so that we can use it&#8217;s property. Here are the steps to connect OpenERP with [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-03-20T13:57:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-03-26T10:45:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ravi Raushan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ravi Raushan\" \/>\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:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\"},\"author\":{\"name\":\"Ravi Raushan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4\"},\"headline\":\"OpenERP 7.0 connection with PHP using XML-RPC\",\"datePublished\":\"2013-03-20T13:57:19+00:00\",\"dateModified\":\"2015-03-26T10:45:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\"},\"wordCount\":154,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png\",\"keywords\":[\"OpenERP\",\"PHP\",\"xml-rpc\"],\"articleSection\":[\"OpenERP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\",\"url\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\",\"name\":\"OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png\",\"datePublished\":\"2013-03-20T13:57:19+00:00\",\"dateModified\":\"2015-03-26T10:45:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OpenERP 7.0 connection with PHP using XML-RPC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4\",\"name\":\"Ravi Raushan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ravi Raushan\"},\"description\":\"Odoo developer with expertise in Python, JavaScript, and headless development services. He crafts innovative, high-performance solutions that push the boundaries of technology, leveraging his proficiency to build flexible, scalable applications and drive digital transformation.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/ravi-raushan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog","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:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/","og_locale":"en_US","og_type":"article","og_title":"OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog","og_description":"In order to connect with openerp first of all we need XML-RPC for PHP, download the\u00a0latest stable release\u00a0from\u00a0http:\/\/phpxmlrpc.sourceforge.net\/. Now extract it and get the file i.e inside lib folder named as xmlrpc.inc. Include this file in your own php file, so that we can use it&#8217;s property. Here are the steps to connect OpenERP with [...]","og_url":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2013-03-20T13:57:19+00:00","article_modified_time":"2015-03-26T10:45:12+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png","type":"image\/png"}],"author":"Ravi Raushan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ravi Raushan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/"},"author":{"name":"Ravi Raushan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4"},"headline":"OpenERP 7.0 connection with PHP using XML-RPC","datePublished":"2013-03-20T13:57:19+00:00","dateModified":"2015-03-26T10:45:12+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/"},"wordCount":154,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png","keywords":["OpenERP","PHP","xml-rpc"],"articleSection":["OpenERP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/","url":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/","name":"OpenERP 7.0 connection with PHP using XML-RPC - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png","datePublished":"2013-03-20T13:57:19+00:00","dateModified":"2015-03-26T10:45:12+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2013\/04\/All-Blogs-Blog-Post-Banner1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/openerp-7-0-connection-with-php-using-xml-rpc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OpenERP 7.0 connection with PHP using XML-RPC"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6230878ae40777e82fbc6eaab40da1a4","name":"Ravi Raushan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2fc5efdddd710431b898d28d68ac8174ce99bd0448f7edb6e6cae425fffeb374?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ravi Raushan"},"description":"Odoo developer with expertise in Python, JavaScript, and headless development services. He crafts innovative, high-performance solutions that push the boundaries of technology, leveraging his proficiency to build flexible, scalable applications and drive digital transformation.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/ravi-raushan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=1479"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1479\/revisions"}],"predecessor-version":[{"id":21873,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/1479\/revisions\/21873"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/22115"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=1479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=1479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=1479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}