質問内容
gasでUrlFetchApp.fetchの箇所で以下のエラーメッセージが返ってきます。
調べてみるとgoogleのバグという情報がありましたが、対応方法などを教えていただきたいです。
※参考サイト
https://teratail.com/questions/310127
発生している問題・エラーメッセージ
server encountered an unexpected condition that prevented it from fulfilling the request
該当のソースコード
javascript
1 var postdata 2 postdata = "grant_type=refresh_token&refresh_token=" + ProductConfigsh.getRange(10,2).getValue(); 3 4 var auth_data = Utilities.base64Encode(`Basic ${ProductConfigsh.getRange(6,2).getValue()}:${ProductConfigsh.getRange(7,2).getValue()}`); 5 errorLog(auth_data); 6 7 var options = { 8 "method": "post", 9 "contentType": "application/x-www-form-urlencoded", 10 "payload": postdata, 11 "headers": {"Authorization" : `Basic ${auth_data}`}, 12 "muteHttpExceptions": true 13 }; 14 try{ 15 var response = UrlFetchApp.fetch(endpoint_token,options); 16 var json_result=JSON.parse(response.getContentText()); 17 }catch(e){ 18 } 19
あなたの回答
tips
プレビュー