我必須專門使用請求模塊。 我有刷新令牌以及訪問令牌。我如何使用nodejs「request」庫訪問gmail帳戶中的線程
request({
method: "GET",
uri:"https://www.googleapis.com/gmail/v1/users/me/threads",
headers: {
"access_token": 'access_token',
"refresh_token": 'refresh_token',
"token_type": 'Bearer',
"Content-Type": "application/json"
},
},
function(err, response, body) {
if(err){
console.log(err); // Failure
} else {
console.log(response);
// done(null);// Success!
}
});
每當我運行這個有一個401錯誤說,需要登錄。 另外我怎樣才能使用特定的查詢「q」,並與請求發送。
感謝它爲我工作 – Avy
歡迎。也謝謝你。 – Tanaike