{"id":142,"date":"2016-04-22T08:55:45","date_gmt":"2016-04-22T06:55:45","guid":{"rendered":"http:\/\/innovahead.com\/?p=142"},"modified":"2022-11-02T12:30:02","modified_gmt":"2022-11-02T11:30:02","slug":"get-and-post-method","status":"publish","type":"post","link":"https:\/\/innovahead.com\/es\/get-and-post-method\/","title":{"rendered":"Get and Post Method"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"142\" class=\"elementor elementor-142\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-38378ef7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"38378ef7\" data-element_type=\"section\" data-e-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-31affd\" data-id=\"31affd\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3d31d09d elementor-widget elementor-widget-text-editor\" data-id=\"3d31d09d\" data-element_type=\"widget\" data-e-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\t\t<p><\/p>\n<h2>Hello All!<\/h2>\n<p>As you know we provide Development and Support\/Maintenance Services for Business Intelligence &amp; Analytics.<\/p>\n<p><\/p>\n<p><\/p>\n<p>In this post, we would like to share with you a customer\u00b4s request that could be interesting for you in the future. They are using OBIEE 11g as a BI tool.<\/p>\n<p><\/p>\n<p><\/p>\n<p>Let\u00b4s introduce the issue. Our customer was sending a huge amount of information via Go URL using a narrative view in his report. The narrative was working as expected but we had a limitation. Using such URL we could only send ~2000 symbols. This length was not enough to cover customer\u00b4s requirement.<\/p>\n<p><\/p>\n<p><\/p>\n<p><strong>Background<\/strong><\/p>\n<p><\/p>\n<p><\/p>\n<p><em>What is HTTP?<\/em><\/p>\n<p><\/p>\n<p><\/p>\n<p>HTTP works as a request-response protocol between a client and server.<\/p>\n<p><\/p>\n<p><\/p>\n<p>Two commonly used methods for a request-response between a client and server are: GET and POST.<\/p>\n<p><\/p>\n<p><\/p>\n<p><em>The GET Method<\/em><\/p>\n<p><\/p>\n<p><\/p>\n<p>Note that the query string (name\/value pairs) is sent in the URL of a GET request:<\/p>\n<p><\/p>\n<p><\/p>\n<p>\/test\/demo_form.asp?name1=value1&amp;name2=value2<\/p>\n<p><\/p>\n<p><\/p>\n<p><em>The POST Method<\/em><\/p>\n<p><\/p>\n<p><\/p>\n<p>Note that the query string (name\/value pairs) is sent in the HTTP message body of a POST request:<\/p>\n<p><\/p>\n<p><\/p>\n<p>POST \/test\/demo_form.asp HTTP\/1.1<\/p>\n<p><\/p>\n<p><\/p>\n<p>Host: example.com<\/p>\n<p><\/p>\n<p><\/p>\n<p>name1=value1&amp;name2=value2<\/p>\n<p><\/p>\n<p><\/p>\n<p>The following table compares the two HTTP methods: GET and POST.<\/p>\n<p>\u00a0<\/p>\n<p><\/p>\t\t\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<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b53fc80 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b53fc80\" data-element_type=\"section\" data-e-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-ab87526\" data-id=\"ab87526\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6abe617 elementor-widget elementor-widget-shortcode\" data-id=\"6abe617\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n<table id=\"tablepress-1\" class=\"tablepress tablepress-id-1\">\n<thead>\n<tr class=\"row-1\">\n\t<td class=\"column-1\"><\/td><th class=\"column-2\">GET<\/th><th class=\"column-3\">POST<\/th>\n<\/tr>\n<\/thead>\n<tbody class=\"row-striping row-hover\">\n<tr class=\"row-2\">\n\t<td class=\"column-1\">Bookmarked<\/td><td class=\"column-2\">Can be bookmarked<\/td><td class=\"column-3\">Cannot be bookmarked<\/td>\n<\/tr>\n<tr class=\"row-3\">\n\t<td class=\"column-1\">Cached<\/td><td class=\"column-2\">Can be cached<\/td><td class=\"column-3\">Not cached<\/td>\n<\/tr>\n<tr class=\"row-4\">\n\t<td class=\"column-1\">Encoding type<\/td><td class=\"column-2\">application\/x-www-form-urlencoded<\/td><td class=\"column-3\">application\/x-www-form-urlencoded or multipart\/form-data. Use multipart encoding for binary data<\/td>\n<\/tr>\n<tr class=\"row-5\">\n\t<td class=\"column-1\">History<\/td><td class=\"column-2\">Parameters remain in browser history<\/td><td class=\"column-3\">Parameters are not saved in browser history<\/td>\n<\/tr>\n<tr class=\"row-6\">\n\t<td class=\"column-1\">Restrictions on data length<\/td><td class=\"column-2\">Yes, when sending data, the GET method adds the data to the URL; and the length of a URL is limited (maximum URL length is 2048 characters)<\/td><td class=\"column-3\">No restrictions<\/td>\n<\/tr>\n<tr class=\"row-7\">\n\t<td class=\"column-1\">Restrictions on data type<\/td><td class=\"column-2\">Only ASCII characters allowed<\/td><td class=\"column-3\">No restrictions. Binary data is also allowed<\/td>\n<\/tr>\n<tr class=\"row-8\">\n\t<td class=\"column-1\">Security<\/td><td class=\"column-2\">GET is less secure compared to POST because data sent is part of the URL<br \/>\n<br \/>\nNever use GET when sending passwords or other sensitive information!<\/td><td class=\"column-3\">POST is a little safer than GET because the parameters are not stored in browser history or in web server logs<\/td>\n<\/tr>\n<tr class=\"row-9\">\n\t<td class=\"column-1\">Visibility<\/td><td class=\"column-2\">Data is visible to everyone in the URL<\/td><td class=\"column-3\">Data is not displayed in the URL<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<!-- #tablepress-1 from cache --><\/div>\n\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<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1acc4df elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1acc4df\" data-element_type=\"section\" data-e-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-32fed9c\" data-id=\"32fed9c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a82676e elementor-widget elementor-widget-text-editor\" data-id=\"a82676e\" data-element_type=\"widget\" data-e-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\t\t<p><b><span lang=\"EN-GB\">Business Case<\/span><\/b><span lang=\"EN-GB\"><o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&nbsp;The customer wanted to send a list of<br>customers. The narrative was defined as follow:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&nbsp;Prefix:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&lt;a href = &#8221;&nbsp;<a href=\"http:\/\/example\/?Data\">http:\/\/example\/?Data<\/a>=<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">Narrative:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">pd@1=@15;pt@1=@11:@12:@13;lo@1=@18;la@1=@19;ac@1=@5;tm@1=@16;st@1=@1;pr@1=@6;du@1=@14;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">Postfix:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&#8221; target=&#8221;_blank&#8221;&gt;&lt;font<br>color=&#8221;#6FA458&#8243;&gt; Show Detail &lt;\/font&gt;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&lt;\/a&gt;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&nbsp;<o:p><\/o:p><\/span><\/p>\n<p><\/p>\n<p><span lang=\"EN-GB\">The GET method adds the data to the URL and<br>the length of a URL is limited (maximum URL length is 2048<br>characters).&nbsp;This narrative generated the following URL:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\"><\/span><\/p>\n<p><span lang=\"EN-GB\">http:\/\/example\/?Data=pd1=Value1;pt1=Value1;lo1=Value1;la1=Value1;ac1=Value1;tm1=Value1;st1=Value1;pr1=Value1;du1=Value1;pd2=Value2;pt2=Value2;lo2=Value2;la2=Value2;ac2=Value2;tm2=Value2;st2=Value2;pr2=Value2;du2=Value2;pd3=Value3;pt3=Value3;lo3=Value3;la3=Value3;ac3=Value3;tm3=Value3;st3=Value3;pr3=Value3;du3=Value3;pd4=Value4;pt4=Value4;lo4=Value4;la4=Value4;ac4=Value4;tm4=Value4;st4=Value4;pr4=Value4;du4=Value4;pd5=Value5;pt5=Value5;lo5=Value5;la5=Value5;ac5=Value5;tm5=Value5;st5=Value5;pr5=Value5;du5=Value5;pd6=Value6;pt6=Value6;lo6=Value6;la6=Value6;ac6=Value6;tm6=Value6;st6=Value6;pr6=Value6;du6=Value6;pd7=Value7;pt7=Value7;lo7=Value7;la7=Value7;ac7=Value7;tm7=Value7;st7=Value7;pr7=Value7;du7=Value7;pd8=Value8;pt8=Value8;lo8=Value8;la8=Value8;ac8=Value8;tm8=Value8;st8=Value8;pr8=Value8;du8=Value8;pd9=Value9;pt9=Value9;lo9=Value9;la9=Value9;ac9=Value9;tm9=Value9;st9=Value9;pr9=Value9;du9=Value9;pd10=Value10;pt10=Value10;lo10=Value10;la10=Value10;ac10=Value10;tm10=Value10;st10=Value10;pr10=Value10;du10=Value10;pd11=Value11;pt11=Value11;lo11=Value11;la11=Value11;ac11=Value11;tm11=Value11;st11=Value11;pr11=Value11;du11=Value11;pd12=Value12;pt12=Value12;lo12=Value12;la12=Value12;ac12=Value12;tm12=Value12;st12=Value12;pr12=Value12;du12=Value12;pd13=Value13;pt13=Value13;lo13=Value13;la13=Value13;ac13=Value13;tm13=Value13;st13=Value13;pr13=Value13;du13=Value13;pd14=Value14;pt14=Value14;lo14=Value14;la14=Value14;ac14=Value14;tm14=Value14;st14=Value14;pr14=Value14;du14=Value14;pd15=Value15;pt15=Value15;lo15=Value15;la15=Value15;ac15=Value15;tm15=Value15;st15=Value15;pr15=Value15;du15=Value15;pd16=Value16;pt16=Value16;lo16=Value16;la16=Value16;ac16=Value16;tm16=Value16;st16=Value16;pr16=Value16;du16=Value16;pd17=Value17;pt17=Value17;lo17=Value17;la17=Value17;ac17=Value17;tm17=Value17;st17=Value17;pr17=Value17;du17=Value17;pd18=Value18;pt18=Value18;lo18=Value18;la18=Value18;ac18=Value18;tm18=Value18;st18=Value18;pr18=Value18;du18=Value18;pd19=Value19;pt19=Value19;lo19=Value19;la19=Value19;ac19=Value19;tm19=Value19;st19=Value19;pr19=Value19;du19=Valu<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">After our modification of the narrative<br>\nincluding POST method as you see below:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">Prefix:<o:p><\/o:p><\/span><\/p>\n<p><b><span lang=\"EN-GB\">&lt;form method=&#8221;POST&#8221;<\/span><\/b><span lang=\"EN-GB\">&nbsp;action=&#8221;<a href=\"http:\/\/example\/\">http:\/\/example\/<\/a>&#8221;&nbsp;<br>\ntarget=&#8221;_blank&#8221;&gt;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&lt;input type=&#8221;hidden&#8221;<br>\nname=&#8221;Data&#8221; value=&#8221;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">Narrative:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">pd@1=@15;pt@1=@11:@12:@13;lo@1=@18;la@1=@19;ac@1=@5;tm@1=@16;st@1=@1;pr@1=@6;du@1=@14;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">Postfix:<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\">&#8220;&gt;<o:p><\/o:p><\/span><\/p>\n<p><span lang=\"EN-GB\"><\/span><\/p>\n<p><\/p>\n<p><span lang=\"EN-GB\">&lt;input type=&#8221;submit&#8221; value=&#8221;Show Detail&#8221;&gt;<o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\">&lt;\/form&gt;<o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\">&nbsp;<o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\">The url sent was:<o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\"><a href=\"http:\/\/example.com\/\">http:\/\/example.com\/<\/a><o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\">&nbsp;All the information is being sent but\nthe URL does not show all the parameters.<o:p><\/o:p><\/span><\/p><p><span lang=\"EN-GB\">&nbsp;<\/span><span style=\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif; font-weight: var( --e-global-typography-text-font-weight );\">We hope this info will be useful!<\/span><\/p>\t\t\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>","protected":false},"excerpt":{"rendered":"<p>Hello All! As you know we provide Development and Support\/Maintenance Services for Business Intelligence &amp; Analytics. In this post, we would like to share with you a customer\u00b4s request that could be interesting for you in the future. They are using OBIEE 11g as a BI tool. Let\u00b4s introduce the issue. Our customer was sending &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/innovahead.com\/es\/get-and-post-method\/\" class=\"more-link\">Leer m\u00e1s<span class=\"screen-reader-text\"> \u00abGet and Post Method\u00bb<\/span><\/a><\/p>","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[5],"class_list":["post-142","post","type-post","status-publish","format-standard","hentry","category-http","tag-http"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get and Post Method - innovAhead<\/title>\n<meta name=\"description\" content=\"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let&#039;s improve that.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/innovahead.com\/es\/get-and-post-method\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get and Post Method - innovAhead\" \/>\n<meta property=\"og:description\" content=\"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let&#039;s improve that.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/innovahead.com\/es\/get-and-post-method\/\" \/>\n<meta property=\"og:site_name\" content=\"innovAhead\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-22T06:55:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-02T11:30:02+00:00\" \/>\n<meta name=\"author\" content=\"InnovAhead\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovAhead\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/\"},\"author\":{\"name\":\"InnovAhead\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/#\\\/schema\\\/person\\\/311e552ca74a32beab343c5931614bb3\"},\"headline\":\"Get and Post Method\",\"datePublished\":\"2016-04-22T06:55:45+00:00\",\"dateModified\":\"2022-11-02T11:30:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/\"},\"wordCount\":729,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/#organization\"},\"keywords\":[\"HTTP\"],\"articleSection\":[\"HTTP\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/\",\"url\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/\",\"name\":\"Get and Post Method - innovAhead\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/#website\"},\"datePublished\":\"2016-04-22T06:55:45+00:00\",\"dateModified\":\"2022-11-02T11:30:02+00:00\",\"description\":\"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let's improve that.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/get-and-post-method\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovahead.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get and Post Method\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/#website\",\"url\":\"https:\\\/\\\/innovahead.com\\\/\",\"name\":\"innovAhead\",\"description\":\"Business Intelligence, Data Science &amp; CRM\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/innovahead.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/#organization\",\"name\":\"innovAhead\",\"url\":\"https:\\\/\\\/innovahead.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/innovahead.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-Logo-2023-PNG-2.png\",\"contentUrl\":\"https:\\\/\\\/innovahead.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-Logo-2023-PNG-2.png\",\"width\":788,\"height\":155,\"caption\":\"innovAhead\"},\"image\":{\"@id\":\"https:\\\/\\\/innovahead.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/innovahead\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/innovahead.com\\\/#\\\/schema\\\/person\\\/311e552ca74a32beab343c5931614bb3\",\"name\":\"InnovAhead\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g\",\"caption\":\"InnovAhead\"},\"url\":\"https:\\\/\\\/innovahead.com\\\/es\\\/author\\\/innovahead\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get and Post Method - innovAhead","description":"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let's improve that.","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:\/\/innovahead.com\/es\/get-and-post-method\/","og_locale":"es_ES","og_type":"article","og_title":"Get and Post Method - innovAhead","og_description":"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let's improve that.","og_url":"https:\/\/innovahead.com\/es\/get-and-post-method\/","og_site_name":"innovAhead","article_published_time":"2016-04-22T06:55:45+00:00","article_modified_time":"2022-11-02T11:30:02+00:00","author":"InnovAhead","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"InnovAhead","Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/innovahead.com\/get-and-post-method\/#article","isPartOf":{"@id":"https:\/\/innovahead.com\/get-and-post-method\/"},"author":{"name":"InnovAhead","@id":"https:\/\/innovahead.com\/#\/schema\/person\/311e552ca74a32beab343c5931614bb3"},"headline":"Get and Post Method","datePublished":"2016-04-22T06:55:45+00:00","dateModified":"2022-11-02T11:30:02+00:00","mainEntityOfPage":{"@id":"https:\/\/innovahead.com\/get-and-post-method\/"},"wordCount":729,"commentCount":0,"publisher":{"@id":"https:\/\/innovahead.com\/#organization"},"keywords":["HTTP"],"articleSection":["HTTP"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/innovahead.com\/get-and-post-method\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/innovahead.com\/get-and-post-method\/","url":"https:\/\/innovahead.com\/get-and-post-method\/","name":"Get and Post Method - innovAhead","isPartOf":{"@id":"https:\/\/innovahead.com\/#website"},"datePublished":"2016-04-22T06:55:45+00:00","dateModified":"2022-11-02T11:30:02+00:00","description":"Our customer was sending a huge amount of information via Go URL using a narrative view in his report. Let's improve that.","breadcrumb":{"@id":"https:\/\/innovahead.com\/get-and-post-method\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/innovahead.com\/get-and-post-method\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/innovahead.com\/get-and-post-method\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/innovahead.com\/"},{"@type":"ListItem","position":2,"name":"Get and Post Method"}]},{"@type":"WebSite","@id":"https:\/\/innovahead.com\/#website","url":"https:\/\/innovahead.com\/","name":"innovAhead","description":"Business Intelligence, Data Science &amp; CRM","publisher":{"@id":"https:\/\/innovahead.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/innovahead.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/innovahead.com\/#organization","name":"innovAhead","url":"https:\/\/innovahead.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/innovahead.com\/#\/schema\/logo\/image\/","url":"https:\/\/innovahead.com\/wp-content\/uploads\/2023\/03\/cropped-Logo-2023-PNG-2.png","contentUrl":"https:\/\/innovahead.com\/wp-content\/uploads\/2023\/03\/cropped-Logo-2023-PNG-2.png","width":788,"height":155,"caption":"innovAhead"},"image":{"@id":"https:\/\/innovahead.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/innovahead"]},{"@type":"Person","@id":"https:\/\/innovahead.com\/#\/schema\/person\/311e552ca74a32beab343c5931614bb3","name":"InnovAhead","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d25fd197a4abca23149f02415b0137eb1bf28263a100777ee25e7709cb4f8226?s=96&d=mm&r=g","caption":"InnovAhead"},"url":"https:\/\/innovahead.com\/es\/author\/innovahead\/"}]}},"featured_media_urls":[],"_links":{"self":[{"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/posts\/142","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/comments?post=142"}],"version-history":[{"count":15,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/posts\/142\/revisions"}],"predecessor-version":[{"id":327,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/posts\/142\/revisions\/327"}],"wp:attachment":[{"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/media?parent=142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/categories?post=142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/innovahead.com\/es\/wp-json\/wp\/v2\/tags?post=142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}