{"id":105589,"date":"2021-04-19T12:29:16","date_gmt":"2021-04-19T03:29:16","guid":{"rendered":"https:\/\/support.questetra.com\/?p=105589"},"modified":"2023-08-17T15:39:50","modified_gmt":"2023-08-17T06:39:50","slug":"google-drive-gfile-export-as-text-2021","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-text-2021\/","title":{"rendered":"Google Drive #GFile: Export as Text"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><div class=\"su-box su-box-style-soft\" id=\"\" style=\"border-color:#cc66cc;border-radius:0px;max-width:none\"><div class=\"su-box-title\" style=\"background-color:#ff99ff;color:#000000;border-top-left-radius:0px;border-top-right-radius:0px\">Google Drive: GFile, Export as Text<\/div><div class=\"su-box-content su-u-clearfix su-u-trim\" style=\"border-bottom-left-radius:0px;border-bottom-right-radius:0px\"> Stores a Google file as Workflow data after converting it to a Text file. It is also possible to change the file name. If a file other than a Google file (Docs\/Slides) is specified an error will occur.<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1\" data-anchor=\"configs\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Configs<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n<ul class=\"fa-ul\">\n<li><span class=\"fa-li\"><i class=\"fal fa-badge-check fa-lg\"><\/i><\/span> U: Select HTTP_Authz Setting<span style=\"color:#990000;\"> *<\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> A1: Set FILE-ID in Drive<span style=\"color:#990000;\"> *<\/span><span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> B1: Set File Name if you want to save as a different name<span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"fal fa-caret-square-down fa-lg\"><\/i><\/span> B2: Select FILE DATA that stores Exported File (append)<span style=\"color:#990000;\"> *<\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"fal fa-caret-square-down fa-lg\"><\/i><\/span> B3: Select STRING DATA that stores File Name in Drive (update)<\/li>\n<li><span class=\"fa-li\"><i class=\"fal fa-caret-square-down fa-lg\"><\/i><\/span> B4: Select STRING DATA that stores Mime-Type in Drive (update)<\/li>\n<\/ul>\n<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1 su-spoiler-closed\" data-anchor=\"script\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Script (click to open)<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>\/\/ GraalJS Script (engine type: 2)\n\n\/\/\/\/\/\/\/\/ START &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\nmain();\nfunction main(){ \n\n\/\/\/\/ == Config Retrieving \/ \u5de5\u7a0b\u30b3\u30f3\u30d5\u30a3\u30b0\u306e\u53c2\u7167 ==\nconst strAuthzSetting     = configs.get      ( &quot;AuthzConfU&quot; );   \/\/\/ REQUIRED\n  engine.log( &quot; AutomatedTask Config: Authz Setting: &quot; + strAuthzSetting );\nconst strInputfileId      = configs.get      ( &quot;StrConfA1&quot; );    \/\/\/ REQUIRED\n  if( strInputfileId    === &quot;&quot; ){\n    throw new Error( &quot;\\n AutomatedTask ConfigError:&quot; +\n                     &quot; Config {A1: FileID} is empty \\n&quot; );\n  }\nlet   strSaveas           = configs.get      ( &quot;StrConfB1&quot; );    \/\/ NotRequired\n  if( strSaveas         === &quot;&quot; ){\n    engine.log( &quot; AutomatedTask ConfigWarning:&quot; +\n                &quot; Config {B1: ExportedSaveas} is empty&quot; );\n  }\nconst filesPocketDownload  = configs.getObject( &quot;SelectConfB2&quot; ); \/\/\/ REQUIRED\nconst strPocketNameOnDrive = configs.getObject( &quot;SelectConfB3&quot; ); \/\/ NotRequired\nconst strPocketMimetype    = configs.getObject( &quot;SelectConfB4&quot; ); \/\/ NotRequired\n\n\n\/\/\/\/ == Data Retrieving \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u306e\u53c2\u7167 ==\nlet filesAttached = engine.findData( filesPocketDownload ); \/\/ java.util.ArrayList\nif( filesAttached === null ) {\n  engine.log( &quot; AutomatedTask FilesArray {B2} (empty)&quot; );\n  filesAttached = new java.util.ArrayList();\n}else{\n  engine.log( &quot; AutomatedTask FilesArray {B2}: &quot; +\n              filesAttached.size() + &quot; files&quot; );\n}\n\n\n\/\/\/\/ == Calculating \/ \u6f14\u7b97 ==\n\/\/\/ Gets a file&#39;s metadata by ID.\n\/\/\/ Google Workspace for Developers &gt; Google Drive for Developers &gt; v3\n\/\/\/ https:\/\/developers.google.com\/drive\/api\/v3\/reference\/files\/get\n\/\/ request1, prepare\nlet request1Uri = &quot;https:\/\/www.googleapis.com\/drive\/v3\/files\/&quot; + strInputfileId;\nlet request1    = httpClient.begin(); \/\/ HttpRequestWrapper\n    request1    = request1.authSetting( strAuthzSetting ); \/\/ with &quot;Authorization: Bearer XX&quot;\n    \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpRequestWrapper\n    request1    = request1.queryParam( &quot;supportsAllDrives&quot;, &quot;true&quot; );\n\/\/ request1, try\nconst response1     = request1.get( request1Uri ); \/\/ HttpResponseWrapper\nengine.log( &quot; AutomatedTask ApiRequest1 Start: &quot; + request1Uri );\nconst response1Code = response1.getStatusCode() + &quot;&quot;;\nconst response1Body = response1.getResponseAsString() + &quot;&quot;;\nengine.log( &quot; AutomatedTask ApiResponse Status: &quot; + response1Code );\nif( response1Code !== &quot;200&quot;){\n  throw new Error( &quot;\\n AutomatedTask UnexpectedResponseError: &quot; +\n                    response1Code + &quot;\\n&quot; + response1Body + &quot;\\n&quot; );\n}\n\/\/ response1, parse\n\/* engine.log( response1Body ); \/\/ debug\n{\n  &quot;kind&quot;: &quot;drive#file&quot;,\n  &quot;id&quot;: &quot;0BwSW_lixFpUuQ2JyV1pqU3VzTGs&quot;,\n  &quot;name&quot;: &quot;Questetra-Intro-en.pdf&quot;,\n  &quot;mimeType&quot;: &quot;application\/pdf&quot;\n}\n*\/\nconst response1Obj = JSON.parse( response1Body );\nengine.log( &quot; AutomatedTask ApiResponse: File Name OnDrive: &quot; + response1Obj.name );\nengine.log( &quot; AutomatedTask ApiResponse: File MIME-Type: &quot; + response1Obj.mimeType );\nif( strSaveas === &quot;&quot; ){\n  strSaveas   = response1Obj.name + &quot;.txt&quot;;\n}\n\n\/\/\/ Export as PDF from Google Drive to BPMS.\n\/\/\/ Google Workspace for Developers &gt; Google Drive for Developers &gt; v3\n\/\/\/ https:\/\/developers.google.com\/drive\/api\/v3\/reference\/files\/export\nlet request2Uri = &quot;https:\/\/www.googleapis.com\/drive\/v3\/files\/&quot; + strInputfileId + &quot;\/export&quot;;\nlet request2    = httpClient.begin(); \/\/ HttpRequestWrapper\n    request2    = request2.authSetting( strAuthzSetting ); \/\/ with &quot;Authorization: Bearer XX&quot;\n    \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpRequestWrapper\n    request2    = request2.queryParam( &quot;mimeType&quot;, &quot;text\/plain&quot; );\n\/\/ request2, try\nconst response2     = request2.get( request2Uri ); \/\/ HttpResponseWrapper\nengine.log( &quot; AutomatedTask ApiRequest2 Start: &quot; + request2Uri );\nconst response2Code = response2.getStatusCode() + &quot;&quot;;\nengine.log( &quot; AutomatedTask ApiResponse Status: &quot; + response2Code );\nif( response2Code !== &quot;200&quot;){\n  const response2Body = response2.getResponseAsString() + &quot;&quot;;\n  throw new Error( &quot;\\n AutomatedTask UnexpectedResponseError: &quot; +\n                    response2Code + &quot;\\n&quot; + response2Body + &quot;\\n&quot; );\n}\n\/\/ response2, parse\nconst fileTmp = new com.questetra.bpms.core.event.scripttask.NewQfile(\n                 strSaveas, response2.getContentType(), response2.getResponse()\n                );\nfilesAttached.add( fileTmp );\n\n\n\/\/\/\/ == Data Updating \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u3078\u306e\u4ee3\u5165 ==\nengine.setData( filesPocketDownload,    filesAttached );\n\nif( strPocketNameOnDrive !== null ){\n  engine.setData( strPocketNameOnDrive, response1Obj.name );\n}\nif( strPocketMimetype    !== null ){\n  engine.setData( strPocketMimetype,    response1Obj.mimeType );\n}\n\n} \/\/\/\/\/\/\/\/ END &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\n\n\/*\nNotes:\n- Text extraction of contracts and manuals created with Google Docs is automated.\n- The File ID can be obtained from the URI or the sharing settings screen.\n- The exported content is limited to 10MB.\n- To extract string data (string type) from text file (file type), \n    - Converter (Text File to String type data)\n    - https:\/\/support.questetra.com\/addons\/converter-textfile-to-string\/\nNotes-ja:\n- Google \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3067\u4f5c\u6210\u3055\u308c\u305f\u5951\u7d04\u66f8\u3084\u30de\u30cb\u30e5\u30a2\u30eb\u306e\u30c6\u30ad\u30b9\u30c8\u60c5\u5831\u62bd\u51fa\u3092\u81ea\u52d5\u5316\u3067\u304d\u307e\u3059\u3002\n- File ID \u306f URI \u3084\u5171\u6709\u8a2d\u5b9a\u753b\u9762\u7b49\u304b\u3089\u53d6\u5f97\u3057\u307e\u3059\u3002\n- Export\u3055\u308c\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30a4\u30ba\u4e0a\u9650\u306f 10MB \u3067\u3059\u3002\n- \u30c6\u30ad\u30b9\u30c8\uff08\u30d5\u30a1\u30a4\u30eb\u578b\uff09\u304b\u3089\u6587\u5b57\u5217\u30c7\u30fc\u30bf\uff08\u6587\u5b57\u5217\u578b\uff09\u3092\u62bd\u51fa\u3059\u308b\u306b\u306f\u5225\u9014\u81ea\u52d5\u5de5\u7a0b\u3092\u914d\u7f6e\u3057\u307e\u3059\u3002\n    - \u30b3\u30f3\u30d0\u30fc\u30bf \uff08\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb to \u6587\u5b57\u578b\u30c7\u30fc\u30bf\uff09\n    - https:\/\/support.questetra.com\/ja\/addons\/converter-textfile-to-string\/\n\nAPPENDIX-en\n- Setting example of &quot;HTTP Authentication&quot; (OAuth2)\n    - Authorization Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&approval_prompt=force\n    - Token Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/token\n    - Scope:\n        - https:\/\/www.googleapis.com\/auth\/drive.readonly\n    - Client ID, Consumer Secret:\n        - ( from https:\/\/console.developers.google.com\/ )\n        - Redirect URLs: https:\/\/s.questetra.net\/oauth2callback\nAPPENDIX-ja\n- &quot;HTTP\u8a8d\u8a3c&quot;\uff08OAuth2\uff09\u306e\u8a2d\u5b9a\u4f8b\n    - Authorization Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&approval_prompt=force\n    - Token Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/token\n    - Scope:\n        - https:\/\/www.googleapis.com\/auth\/drive.readonly\n    - Client ID, Consumer Secret:\n        - ( from https:\/\/console.developers.google.com\/ )\n        - Redirect URLs: https:\/\/s.questetra.net\/oauth2callback\n*\/\n\n<\/code><\/pre><\/div>\n\n\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image alignright\"><a href=\"#\"><img decoding=\"async\" src=\"data:image;base64,\niVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAEB0lEQVRYR8VXXWgcVRT+zszuzM6Y\ntgltUFRagxTaiDS1IKKUjX1IFyrWUi0iVJOHvgjSFAVnEbX+4KaIZIv4JGKkhRaC2JSW7uahbqmI\nfSimSCVUsK1oWv\/IxpTM\/s6RO8lmN\/O3s43U+zLL3vPznXO\/c869hP95USv++w4VnyGuxgnUw+B2\n8RX6DJ4gUF58ATmXNdSxsHabAugd5vZYqbCfmQcJ1B7GMIPzRJQuKLHDuQOUD9IJBJBImf1MPBzW\nsdORAMIkD4y\/rp7wA+ELYPvQXJpA+8NE3EyGwemsoR\/wkvMEkEiZIyC81Mxwi\/sjGUMbcOq4APyX\nkXscyeGsoQ82\/r8EgDhzED4PiuzZRyOId8uQHdDLVeD09xWM\/1ANTIxF0q5GTiyaEWxXi+bVIMLF\nN8p4cWsEmkLouMvt58pNhnGsCLPkj0EQs6hqXbXqWASQSJkHQXg7CH7qeQU96yTcyDPWrCBE5aXS\nIguj31Vw5JtKMD0Y72SS2kEhtAhg+9BcnkCr\/DT3PBbBC09EoEaAQhmYNRmdK90cvjnDOHSyhMkp\n9gUhspA19I5FAKLDSWx95adxXwfhjV0KujrrDv+aBXQV0JWlWhYDZy9X8dHpcigu2BabMX\/ftgie\n3hJBRKrbrFjAn\/8w7hEN2eEqPwd8nCnh25+soCzYFWHrJlJmDoS4l\/SmtRJee0rBmhXu3ckpC50r\nJaxuc+9NXLeQPB7IxnOZpNZbA3ANhHVeAJI7o9i6QXZFOVsAPhkv46H7JezYLENypEHwZORcGWMX\nvctSDK6soW+eBzBkejKm72EZ+7ZF0RZzn3Puxyo+PFXG2tWEt3YrEDxxrp\/\/YHxwooTfpr0JmTE0\n8gWgKcB7zyl2hM7lZHpjhTTKCp6cvFjBp2e9y7IOIGW6jqAVo62ArQFk8KWsoff4knB4r4IN97qj\nn5pm3CrA1YRkCVCjwHxO66tqAWcmqhi94MgCo05CrzLcuUVGfzyKWLRuLKgB+dWbOP93vyzhl7+X\n8oDB9TL0a0Tv71HwSJdkV4BQvzE93\/2cLdjPeakCO\/KjHq25NpQCW\/Hj6yW8klDQrsNOuyCV+B12\nXf7VwpujJddwYvBM1tDt613TYfTqjiie7Jbx+8x813PWux+YW0Xgs6\/LyFzy6ANew2hhHF9zDiRR\n5y\/3RfHg3RLa1HCxi+M6P1lFasw9D0T0RVV7wDWOF1py0wtJOAj+Ur4XkppKs8G0LAANqa\/ZuXOX\nUsYXmaTW7wzgjlzL4RF5YAZqmwtPsZGgm1LQkQjCMcn9t\/UwqRm2n2aFwiCT\/TTzvbI1AhGOiSld\niMXSy3qaOaNbyEgvMfUw2Y\/TTUJGDBZiyjPxBJOcC4o4NAeWxfYWlP8FgpLGMJo42BUAAAAASUVO\nRK5CYII=\n\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-cloud-download-alt\"><\/i> Download<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a rel=\"noreferrer noopener\" href=\"https:\/\/drive.google.com\/file\/d\/1s-mJ15VT5sVzGSC1uLwUCtbwz25gdwfx\/view?usp=drivesdk\" target=\"_blank\">Google-Drive-GFile-Export-as-Text-2021.xml<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/drive.google.com\/file\/d\/196y1K-byRy263n3Ed4g-4nrJyY1GOnbW\/view?usp=sharing\" data-type=\"link\" data-id=\"https:\/\/drive.google.com\/file\/d\/196y1K-byRy263n3Ed4g-4nrJyY1GOnbW\/view?usp=sharing\">Google-Drive-GFile-Export-as-Text-2023.xml<\/a>\n<ul class=\"wp-block-list\">\n<li>2023-08-15 (C) Questetra, Inc. (MIT License)<\/li>\n\n\n\n<li>for &#8220;GraalJS standard (engine-type 3)&#8221; on v15.0 or above<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\">2021-04-08 (C) Questetra, Inc. (MIT License)<br><a href=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-text-2021\/\">https:\/\/support.questetra.com\/addons\/google-drive-gfile-export-as-text-2021\/<\/a><br><i class=\"fal fa-info-circle\"><\/i> The Addon-import feature is available with <span style=\"color:#4a86e8\" class=\"has-inline-color\"><strong>Professional<\/strong><\/span> edition.<\/p>\n\n\n<div class=\"su-divider su-divider-style-dashed\" style=\"margin:30px 0;border-width:8px;border-color:#009900\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-lightbulb-exclamation\"><\/i> Notes<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Text extraction of contracts and manuals created with Google Docs is automated.<\/li>\n\n\n\n<li>The File ID can be obtained from the URI or the sharing settings screen.<\/li>\n\n\n\n<li>The exported content is limited to 10MB.<\/li>\n\n\n\n<li>To extract string data (string type) from text file (file type):\n<ul class=\"wp-block-list\">\n<li>Converter (Text File to String type data)<\/li>\n\n\n\n<li><a href=\"https:\/\/support.questetra.com\/addons\/converter-textfile-to-string\/\">https:\/\/support.questetra.com\/addons\/converter-textfile-to-string\/<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-images\"><\/i> Capture<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" data-attachment-id=\"105590\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-text-2021\/attachment\/google-drive-gfile-export-as-text-2021-execution\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?fit=1200%2C675&amp;ssl=1\" data-orig-size=\"1200,675\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Google-Drive-GFile-Export-as-Text-2021-execution\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?fit=1024%2C576&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?resize=1200%2C675&#038;ssl=1\" alt=\"Stores Google file as Workflow data with converting to a Text file. It is also possible to change the file name. If a file other than a Google file (Docs\/Slides) is specified, an error will occur.\" class=\"wp-image-105590\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?w=1200&amp;ssl=1 1200w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-execution.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default q-box\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"869\" height=\"630\" data-attachment-id=\"105594\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-text-2021\/attachment\/google-drive-gfile-export-as-text-2021-config-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?fit=1152%2C835&amp;ssl=1\" data-orig-size=\"1152,835\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Google-Drive-GFile-Export-as-Text-2021-config-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?fit=869%2C630&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en-869x630.png?resize=869%2C630&#038;ssl=1\" alt=\"\" class=\"wp-image-105594\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?resize=869%2C630&amp;ssl=1 869w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?resize=435%2C315&amp;ssl=1 435w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?resize=768%2C557&amp;ssl=1 768w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-GFile-Export-as-Text-2021-config-en.png?w=1152&amp;ssl=1 1152w\" sizes=\"auto, (max-width: 869px) 100vw, 869px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-book\"><\/i> Appendix<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Setting example of &#8220;HTTP Authentication&#8221; (OAuth2)\n<ul class=\"wp-block-list\">\n<li>Authorization Endpoint URL:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&#038;approval_prompt=force\" rel=\"nofollow\">https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&#038;approval_prompt=force<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Token Endpoint URL:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/accounts.google.com\/o\/oauth2\/token\" rel=\"nofollow\">https:\/\/accounts.google.com\/o\/oauth2\/token<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Scope:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.googleapis.com\/auth\/drive.readonly\" rel=\"nofollow\">https:\/\/www.googleapis.com\/auth\/drive.readonly<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Client ID, Consumer Secret:\n<ul class=\"wp-block-list\">\n<li>( from <a href=\"https:\/\/console.developers.google.com\/\" rel=\"nofollow\">https:\/\/console.developers.google.com\/<\/a> )<\/li>\n\n\n\n<li>Redirect URLs: <a href=\"https:\/\/s.questetra.net\/oauth2callback\" rel=\"nofollow\">https:\/\/s.questetra.net\/oauth2callback<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-balance-scale\"><\/i> See also<\/h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-questetra-support wp-block-embed-questetra-support\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"4Bz2aQjvWE\"><a href=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-download-2021\/\">Google Drive #File: Download<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Google Drive #File: Download&#8221; &#8212; Questetra Support\" src=\"https:\/\/support.questetra.com\/addons\/google-drive-file-download-2021\/embed\/#?secret=58J7wAmG68#?secret=4Bz2aQjvWE\" data-secret=\"4Bz2aQjvWE\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Stores a Google file as Workflow data after converting it to a Text file. It is also possible to change the file name. If a file other than a Google file (Docs\/Slides) is specified an error will occur.<\/p>\n","protected":false},"author":2,"featured_media":82955,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"Stores Google file as Workflow data with converting to a Text file. It is also possible to change the file name. If a file other than a Google file (Docs\/Slides) is specified, an error will occur.","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[168],"tags":[3167,398,3162],"class_list":["post-105589","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-addons","tag-authsetting","tag-google-drive-api-v3","tag-google-workspace"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1","uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"IMAMURA, Genichi","author_link":"https:\/\/support.questetra.com\/en\/author\/imamuragenichi\/"},"uagb_comment_info":4,"uagb_excerpt":"Stores a Google file as Workflow data after converting it to a Text file. It is also possible to change the file name. If a file other than a Google file (Docs\/Slides) is specified an error will occur.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-rt3","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":82954,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-text\/","url_meta":{"origin":105589,"position":0},"title":"Google Drive: GFile, Export as Text","author":"IMAMURA, Genichi","date":"2019-12-25","format":false,"excerpt":"Exports text information from a GFile in Google Drive. If a file other than a Google file (Docs \/ Slides) is specified, an error will occur (Please use File Download). File ID can be obtained from URI.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Google Drive: GFile, Export as Text","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-GFile-Export-as-Text-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79303,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-pdf\/","url_meta":{"origin":105589,"position":1},"title":"Google Drive: GFile; Export as PDF","author":"IMAMURA, Genichi","date":"2019-09-12","format":false,"excerpt":"Exports the specified file in the Drive to the Workflow Data Item in PDF format. If a file other than a Google file (Docs \/ Sheets \/ Slides etc.) is specified, an error will occur (Please use File Download). File ID can be obtained from URI.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-PDF-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-PDF-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-PDF-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-PDF-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-PDF-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79451,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-gfile-export-as-microsoft-office\/","url_meta":{"origin":105589,"position":2},"title":"Google Drive: GFile; Export as Microsoft-Office","author":"IMAMURA, Genichi","date":"2019-09-18","format":false,"excerpt":"Exports the specified file in the Drive to the Workflow Data Item in Microsoft format: docx, xlsx, or pptx. If a file other than a Google file (Docs \/ Sheets \/ Slides etc.) is specified, an error will occur. File ID can be obtained from URI.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-Microsoft-Office-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-Microsoft-Office-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-Microsoft-Office-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-Microsoft-Office-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-GFile-Export-as-Microsoft-Office-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":82966,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-convert\/","url_meta":{"origin":105589,"position":3},"title":"Google Drive: File, Convert","author":"IMAMURA, Genichi","date":"2019-12-25","format":false,"excerpt":"Converts file in Google Drive and save as another MimeType file. Supports both Google Doc files and common files. File ID can be obtained from URI etc. (If Folder-ID not specified, the file will inherit any discoverable parents of the source file.)","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Google Drive: File, Convert","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79282,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-download\/","url_meta":{"origin":105589,"position":4},"title":"Google Drive: File; Download","author":"IMAMURA, Genichi","date":"2019-09-12","format":false,"excerpt":"Downloads the specified file in the Drive to the Workflow Data Item. If a Google File (Docs \/ Sheets \/ Slides, etc.) is specified, an error will occur (Please use File Export). The File ID can be obtained from the sharing settings screen.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Download-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Download-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Download-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Download-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Download-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":76390,"url":"https:\/\/support.questetra.com\/en\/bpmn-icons\/service-task-google-drive-file-upload\/","url_meta":{"origin":105589,"position":5},"title":"Google Drive: File Upload","author":"Hirotaka NISHI","date":"2019-04-23","format":false,"excerpt":"Uploads files specified in File Type Data Item to the specified folder of Google Drive. Capable of obtaining the file ID, the display URL, and the download URL as the response and storing them in a String type Data Item.","rel":"","context":"In &quot;BPMN Icons&quot;","block_context":{"text":"BPMN Icons","link":"https:\/\/support.questetra.com\/en\/category\/bpmn-icons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2024\/12\/bpmn-icon-service-task-google-drive2024.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2024\/12\/bpmn-icon-service-task-google-drive2024.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2024\/12\/bpmn-icon-service-task-google-drive2024.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2024\/12\/bpmn-icon-service-task-google-drive2024.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2024\/12\/bpmn-icon-service-task-google-drive2024.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105589","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=105589"}],"version-history":[{"count":6,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105589\/revisions"}],"predecessor-version":[{"id":149638,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105589\/revisions\/149638"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/82955"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=105589"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=105589"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=105589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}