0
drive + sheet api를 사용하고 있습니다. 현재 엑셀 시트를 CSV 형식으로 내보내고 싶지만 요청을받는 중에 콘솔에서 오류가 발생합니다.csv 내보내기 요청이 "403 Unauthenticated Use Exceeded에 대한 일일 제한"오류를 발생시킵니다.
function exportFirstCsv(excelId)
{
$.ajax({
url: "https://www.googleapis.com/drive/v2/files/" + excelId + '/export',
type: "GET",
data: {
mimeType: 'text/csv'
},
success: function(response) {
console.log('Now here');
console.log(response);
},
error: function(xhr) {
}
});
}
got error : {
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "dailyLimitExceededUnreg",
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
"extendedHelp": "https://code.google.com/apis/console"
}
],
"code": 403,
"message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
}
}
I want to export the file.
[Google 드라이브 API 수신 오류 403 - 인증되지 않은 사용 일일 한도 초과]를 복제 할 수 있습니다. 계속 사용하려면 가입 필요] (https://stackoverflow.com/questions/15042399/receiving-error-403-in-google-drive-api-daily-limit-for-unauthenticated-use-ex) – pinoyyid
나는 또한 피곤함 쿼리 매개 변수로 API 키와 함께 요청하지만 문제는 여전히 동일합니다. 승인 된 전화는 어떻게 만듭니 까? – techie
https://developers.google.com/identity/protocols/OAuth2 – pinoyyid