<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Fetch on tanaike - Google Apps Script, Gemini API, and Developer Tips</title>
    <link>https://tanaikech.github.io/tags/fetch/</link>
    <description>Recent content in Fetch on tanaike - Google Apps Script, Gemini API, and Developer Tips</description>
    <generator>Hugo</generator>
    <language>ja</language>
    <copyright>&amp;copy; 2026. All rights reserved.</copyright>
    <lastBuildDate>Sat, 19 Sep 2020 13:11:35 +0900</lastBuildDate>
    <atom:link href="https://tanaikech.github.io/tags/fetch/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Updated: GAS Library - FetchApp</title>
      <link>https://tanaikech.github.io/2020/09/19/updated-gas-library-fetchapp/</link>
      <pubDate>Sat, 19 Sep 2020 13:11:35 +0900</pubDate>
      <guid>https://tanaikech.github.io/2020/09/19/updated-gas-library-fetchapp/</guid>
      <description>&lt;h3 id=&#34;fetchapp-was-updated-to-v102&#34;&gt;FetchApp was updated to v1.0.2.&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;v1.0.2 (September 19, 2020)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;From this version, when a blob is sent, the blob is sent to &lt;code&gt;files&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;strong&gt;You can check this at &lt;a href=&#34;https://github.com/tanaikech/FetchApp&#34;&gt;https://github.com/tanaikech/FetchApp&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Updated: GAS Library - FetchApp</title>
      <link>https://tanaikech.github.io/2020/04/13/updated-gas-library-fetchapp/</link>
      <pubDate>Mon, 13 Apr 2020 21:27:23 +0900</pubDate>
      <guid>https://tanaikech.github.io/2020/04/13/updated-gas-library-fetchapp/</guid>
      <description>&lt;h3 id=&#34;fetchapp-was-updated-to-v101&#34;&gt;FetchApp was updated to v1.0.1.&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;v1.0.1 (April 13, 2020)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;When V8 runtime is enabled, it was found that an error occurred. So this bug was removed.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;strong&gt;You can check this at &lt;a href=&#34;https://github.com/tanaikech/FetchApp&#34;&gt;https://github.com/tanaikech/FetchApp&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Go Library - go-fetchall</title>
      <link>https://tanaikech.github.io/2019/05/01/go-library-go-fetchall/</link>
      <pubDate>Wed, 01 May 2019 21:14:46 +0900</pubDate>
      <guid>https://tanaikech.github.io/2019/05/01/go-library-go-fetchall/</guid>
      <description>&lt;h1 id=&#34;overview&#34;&gt;Overview&lt;/h1&gt;&#xA;&lt;p&gt;This is a Golang library for running HTTP requests with the asynchronous process. The progress of requests can be also shown.&lt;/p&gt;&#xA;&lt;h1 id=&#34;demo&#34;&gt;Demo&lt;/h1&gt;&#xA;&lt;p&gt;&lt;img src=&#34;https://github.com/tanaikech/go-fetchall/raw/master/images/demo.gif&#34;&#xA;     alt=&#34;Go Library - go-fetchall&#34;&#xA;     &#xA;     loading=&#34;lazy&#34;&#xA;     decoding=&#34;async&#34;&gt;&#xA;&lt;/p&gt;&#xA;&lt;p&gt;In this demonstration, 5 requests are run by 2 workers. And before each request, the waiting time for 2 seconds is added as a sample. By this, you can easily see the work with 2 workers. Also you can see this script at &lt;a href=&#34;#samplescript&#34;&gt;the following sample script&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>GAS Library - FetchApp</title>
      <link>https://tanaikech.github.io/2019/04/20/gas-library-fetchapp/</link>
      <pubDate>Sat, 20 Apr 2019 11:07:03 +0900</pubDate>
      <guid>https://tanaikech.github.io/2019/04/20/gas-library-fetchapp/</guid>
      <description>&lt;h1 id=&#34;overview&#34;&gt;Overview&lt;/h1&gt;&#xA;&lt;p&gt;&lt;strong&gt;This is a GAS library for creating and requesting the type of multipart/form-data using Google Apps Script. This library enhances Class UelFetchApp of Google Apps Script.&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;description&#34;&gt;Description&lt;/h1&gt;&#xA;&lt;p&gt;In order to fetch data from URL, there is &lt;a href=&#34;https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app&#34;&gt;Class UrlFetchApp&lt;/a&gt; in Google Apps Script. As the method for fetching, there is the method of &lt;a href=&#34;https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#fetch(String,Object)&#34;&gt;&lt;code&gt;fetch(url, params)&lt;/code&gt;&lt;/a&gt;. In the current stage which was released this library, when user want to request with &lt;a href=&#34;https://www.w3.org/TR/html5/sec-forms.html#multipart-form-data&#34;&gt;the type of multipart/form-data&lt;/a&gt;, the request body is required to be created by the user. But it is &lt;a href=&#34;https://gist.github.com/tanaikech/d595d30a592979bbf0c692d1193d260c&#34;&gt;a bit difficult to create the request body&lt;/a&gt;. I thought that if the request body for the type of multipart/form-data can be easily created, it might be also useful for other users. So I created this as a GAS library.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
