1
A
回答
4
不幸的是,UrlFetchApp不支持用戶:password @前綴表示法。相反,您必須手動構建授權標頭,使用如下代碼:
var response = UrlFetchApp.fetch('https://api.pinboard.in/v1/tags/get', {
headers: {
Authorization: 'Basic ' + Utilities.base64Encode(user + ':' + password)
}
});
+0
謝謝,它已經工作:) – Oletros
相關問題
- 1. 使用UrlFetchApp.fetch獲取錯誤503
- 2. 使用AngularJs訪問Sprint休息方法時的錯誤請求
- 3. perl Apache2 ::同時使用param()和upload()方法的請求錯誤
- 4. 找不到錯誤請求方法
- 5. 使用Flask POST請求出現錯誤請求錯誤
- 6. 400錯誤的請求和方法不允許錯誤
- 7. WCF是給400錯誤請求的錯誤在POST方法
- 8. WCF POST方法獲取錯誤400錯誤的請求
- 9. SQLITE請求語法錯誤
- 10. 條件格式錯誤5,語法錯誤和請求使用「=」
- 11. 錯誤的請求錯誤
- 12. HTTP 400調用Rest WebService POST方法時的錯誤請求
- 13. 400使用DotNetOpenAuth時的錯誤請求
- 14. 使用jsonp錯誤的jQuery ajax請求
- 15. 使用Google OAuth2.0時的錯誤請求
- 16. Python的請求400錯誤使用JSON
- 17. 使用Python請求的HTML 501錯誤
- 18. 使用Postmaster的API請求者錯誤
- 19. REST - 當使用400( 「錯誤的請求」)
- 20. 使用請求處理錯誤的URL
- 21. 使用jsonp錯誤的跨域請求
- 22. 使用Passport-local-mongoose的錯誤請求
- 23. 使用CURL PHP返回錯誤400的發佈請求? Systatically錯誤請求
- 24. 谷歌使用UrlFetchApp.fetch做處理XML數據請求時,得到一個錯誤的Apps腳本
- 25. 錯誤請求
- 26. 使用ID(ExpressJS)發送GET請求的錯誤請求
- 27. HTTP 400使用Spring Mvc對REST請求的錯誤請求
- 28. 使用POST方法的Gracenote RhythmAPI請求
- 29. python3請求400錯誤的請求
- 30. 錯誤請求錯誤
您得到的錯誤是什麼?更好的方法是在返回response.getContentText()之前檢查response.getResponseCode()的值 – Srik
由於程序停止,我無法檢查responseCode()。我收到的唯一一條消息是這個測試:錯誤的請求:https:// user:[email protected]/v1/tags/get(第9行),並提供解僱按鈕 – Oletros