{"id":14932,"date":"2021-01-18T18:54:39","date_gmt":"2021-01-18T13:24:39","guid":{"rendered":"https:\/\/www.botreetechnologies.com\/blog\/?p=14932"},"modified":"2021-01-29T12:51:05","modified_gmt":"2021-01-29T07:21:05","slug":"ftp-integration-in-rails-app","status":"publish","type":"post","link":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/","title":{"rendered":"FTP Integration in Rails App"},"content":{"rendered":"\n<p>FTP stands for File transfer protocol. It is basically used to transfer files from the local computer to the client\/remote server and manage client and server side data of the application.&nbsp;<\/p>\n\n\n\n<p>Ruby provides a <code><strong>\u2018net\/ftp\u2019<\/strong><\/code> library to implement FTP into your web application.<\/p>\n\n\n\n<p>Experts at any <a href=\"https:\/\/www.botreetechnologies.com\/ruby-on-rails-development\">Ruby on Rails development company<\/a> need to understand how to integrate FTP in a rails application. Here you go.<\/p>\n\n\n\n<p><strong>In this article we will learn how to<\/strong>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Integrate FTP in rails application.<\/li><li>Methods of FTP library and use of these methods.<\/li><\/ul>\n\n\n\n<p>First you need a library of FTP class.<\/p>\n\n\n\n<p><code>require 'net\/ftp'<\/code><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.botreetechnologies.com\/ruby-on-rails-development\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"150\" src=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate.png\" alt=\"Get Estimate for Ruby on Rails Application \" class=\"wp-image-14971\" srcset=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate.png 700w, https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/RoR-estimate-300x64.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>There are some methods which will be useful to users.<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>::open<\/li><li>getbinaryfilefile<\/li><li>gettextfile<\/li><li>putbinaryfile<\/li><li>puttextfile<\/li><li>chdir<\/li><li>rename<\/li><li>Delete<\/li><li>Login<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>::open<\/strong><\/h3>\n\n\n\n<p>This method is similar to FTP.new with mandatory host parameters.<\/p>\n\n\n\n<p>Users have to provide the mandatory parameters as an argument in this method.<\/p>\n\n\n\n<p>This method will pass to the FTP object and make a connection to the remote server and close it when the blocks finish or exception is raised.<br><\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:<\/code><br>\n<code>SFTP_CONFIGURATION_USERNAME, password: SFTP_CONFIGURATION_PASSWORD) do<\/code><br>\n<code>|ftp|<\/code><br><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Getbinaryfilefile(remote_file_path, local_file_path, blocksize = DEFAULT_BLOCKSIZE )<\/h3>\n\n\n\n<p>This method is used for retrieving files from the remote server in binary mode and storing the results in a specified&nbsp; local file. If the local file is nil, it returns retrieved data.<\/p>\n\n\n\n<p>DEFAULT_BLOCKSIZE value is by default 1024 bytes per block(Not Mandatory).<\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:SFTP_CONFIGURATION_USERNAME,<\/code><br>\n<code>password: SFTP_CONFIGURATION_PASSWORD) do |ftp|<\/code><br>\n<code>ftp.getbinaryfile(<strong>\"\/uploads\/tmp_data\/inventory_30_09_2020.xls\"<\/strong>,<\/code><br>\n<code>'\/home\/er\/projects\/inventory.xls', blocksize = DEFAULT_BLOCKSIZE)<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Gettextfile(remote_file_path, local_file_path)<\/strong><\/h3>\n\n\n\n<p>This method retrieves files in ASCII(text) mode from the remote server and stores the results in a specified&nbsp; local file. If the local file is nil, it returns retrieved data.&nbsp;<\/p>\n\n\n\n<p>If blocks supplied it is passed retrieved data one line at a time.<\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:SFTP_CONFIGURATION_USERNAME,<\/code><br>\n<code>password: SFTP_CONFIGURATION_PASSWORD) do |ftp|<\/code><br>\n<code>ftp.gettextfile(<strong>\"\/uploads\/tmp_data\/inventory_30_09_2020.xls\"<\/strong>,<\/code><br>\n<code>'\/home\/er\/projects\/inventory.xls', blocksize = DEFAULT_BLOCKSIZE)<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Putbinaryfile(local_file_path, remote_file_path)<\/strong><\/h3>\n\n\n\n<p>Transfer local file to the remote server in binary mode at the specified file location given in the remotefile parameter and store the data into the remote file.<\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:SFTP_CONFIGURATION_USERNAME,<\/code><br>\n<code>password: SFTP_CONFIGURATION_PASSWORD) do |ftp|<\/code><br>\n<code>ftp.putbinaryfile('\/home\/er\/projects\/inventory.xls',<\/code><br>\n<code>\"\/uploads\/tmp_data\/inventory_30_09_2020.xls\")<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong>Puttextfile<\/strong><\/h3>\n\n\n\n<p>Transfer local file to the remote server in ASCII(text) mode at the specified file location given in the remotefile parameter and store the data into the remote file. <\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:SFTP_CONFIGURATION_USERNAME,<\/code><br>\n<code>password: SFTP_CONFIGURATION_PASSWORD) do |ftp|<\/code><br>\n<code>ftp.puttextfile('\/home\/er\/projects\/inventory.xls',<\/code><br>\n<code>\"\/uploads\/tmp_data\/inventory_30_09_2020.xls\")<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">6. <strong>Chdir<\/strong><\/h3>\n\n\n\n<p>Changes the remote directory.<\/p>\n\n\n\n<p><strong>List<\/strong> method returns all the files of the current remote directory.<\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:SFTP_CONFIGURATION_USERNAME,<\/code><br>\n<code>password: SFTP_CONFIGURATION_PASSWORD) do |ftp|<\/code><br>\n<code>ftp.chdir(\"uploads\/\")<\/code><br>\n<code>Files = ftp.list<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong>Rename<\/strong><\/h3>\n\n\n\n<p>Used for renaming a file.<\/p>\n\n\n\n<p><code>Net::FTP.open(SFTP_CONFIGURATION_URL, username:<\/code><br>\n<code>SFTP_CONFIGURATION_USERNAME, password: SFTP_CONFIGURATION_PASSWORD) do<\/code><br>\n<code>|ftp|<\/code><br>\n<code>rename('stock_data.txt', 'all_stock_details.txt')<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">8. <strong>Delete<\/strong><\/h3>\n\n\n\n<p>Used to delete files from the remote server.<\/p>\n\n\n\n<p><code>def delete<\/code><br>\n<code>Filename = '\/uploads\/tmp_data\/inventory_30_09_2020.xls'<\/code><br>\n<code>resp = sendcmd(\"DELE #{filename}\")<\/code><br>\n<code>end<\/code>\n<\/p>\n\n\n\n<p>So, using the above method and the use of getbinaryfile and putbinaryfile, we can download files from the FTP server and send the file to the FTP server.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>FTP stands for File transfer protocol. It is basically used&#8230;<\/p>\n","protected":false},"author":64,"featured_media":14939,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[73,10,57],"tags":[],"class_list":["post-14932","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ruby-on-rails","category-technology","category-web-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FTP Integration in Rails App<\/title>\n<meta name=\"description\" content=\"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails app.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FTP Integration in Rails App\" \/>\n<meta property=\"og:description\" content=\"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails app.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\" \/>\n<meta property=\"og:site_name\" content=\"BoTree Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BoTreeTechnologies\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-18T13:24:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-29T07:21:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png\" \/>\n\t<meta property=\"og:image:width\" content=\"852\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Dharmik Salakiya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:site\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dharmik Salakiya\" \/>\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:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\"},\"author\":{\"name\":\"Dharmik Salakiya\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597\"},\"headline\":\"FTP Integration in Rails App\",\"datePublished\":\"2021-01-18T13:24:39+00:00\",\"dateModified\":\"2021-01-29T07:21:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\"},\"wordCount\":405,\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png\",\"articleSection\":[\"Ruby on Rails\",\"Technology\",\"Web Development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\",\"name\":\"FTP Integration in Rails App\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png\",\"datePublished\":\"2021-01-18T13:24:39+00:00\",\"dateModified\":\"2021-01-29T07:21:05+00:00\",\"author\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597\"},\"description\":\"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails app.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png\",\"width\":852,\"height\":420,\"caption\":\"FTP Integration in Rails\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.botreetechnologies.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FTP Integration in Rails App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/\",\"name\":\"BoTree Technologies\",\"description\":\"Committed to inspire generation.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597\",\"name\":\"Dharmik Salakiya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png\",\"caption\":\"Dharmik Salakiya\"},\"description\":\"I am a Ruby on Rails Developer. I like ruby, and problem solving and explore new things. Apart from that, I like travelling and listen to songs.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FTP Integration in Rails App","description":"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails 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:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/","og_locale":"en_US","og_type":"article","og_title":"FTP Integration in Rails App","og_description":"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails app.","og_url":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/","og_site_name":"BoTree Technologies","article_publisher":"https:\/\/www.facebook.com\/BoTreeTechnologies\/","article_published_time":"2021-01-18T13:24:39+00:00","article_modified_time":"2021-01-29T07:21:05+00:00","og_image":[{"width":852,"height":420,"url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png","type":"image\/png"}],"author":"Dharmik Salakiya","twitter_card":"summary_large_image","twitter_creator":"@BoTreeTech","twitter_site":"@BoTreeTech","twitter_misc":{"Written by":"Dharmik Salakiya","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#article","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/"},"author":{"name":"Dharmik Salakiya","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597"},"headline":"FTP Integration in Rails App","datePublished":"2021-01-18T13:24:39+00:00","dateModified":"2021-01-29T07:21:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/"},"wordCount":405,"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png","articleSection":["Ruby on Rails","Technology","Web Development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/","url":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/","name":"FTP Integration in Rails App","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage"},"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png","datePublished":"2021-01-18T13:24:39+00:00","dateModified":"2021-01-29T07:21:05+00:00","author":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597"},"description":"Ruby on Rails web applications require FTP integration for downloading and sending files. Here are the different ways to integrate FTP with a Rails app.","breadcrumb":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#primaryimage","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2021\/01\/ftp-integration-in-rails-app.png","width":852,"height":420,"caption":"FTP Integration in Rails"},{"@type":"BreadcrumbList","@id":"https:\/\/www.botreetechnologies.com\/blog\/ftp-integration-in-rails-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.botreetechnologies.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FTP Integration in Rails App"}]},{"@type":"WebSite","@id":"https:\/\/www.botreetechnologies.com\/blog\/#website","url":"https:\/\/www.botreetechnologies.com\/blog\/","name":"BoTree Technologies","description":"Committed to inspire generation.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/72dcc8466ce1aa6c11111731ce677597","name":"Dharmik Salakiya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/dharmik-salakiya-150x150.png","caption":"Dharmik Salakiya"},"description":"I am a Ruby on Rails Developer. I like ruby, and problem solving and explore new things. Apart from that, I like travelling and listen to songs."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/14932","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/users\/64"}],"replies":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/comments?post=14932"}],"version-history":[{"count":5,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/14932\/revisions"}],"predecessor-version":[{"id":14972,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/14932\/revisions\/14972"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media\/14939"}],"wp:attachment":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media?parent=14932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/categories?post=14932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/tags?post=14932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}