We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qiita APIの利用制限を超過しているとき、以下のようなレスポンスが返ってきます。
{"message":"Rate limit exceeded","type":"rate_limit_exceeded"}
cors.jsファイル内で以下のような記述がありますが、上記の場合result.errorは存在しないので、 コンソールにUncaught undefinedというエラーメッセージが表示されます。
cors.js
result.error
Uncaught undefined
const result = JSON.parse(request.response); if (request.status < 200 || request.status >= 300) { throw result.error; }
こんな感じにするといいのではないかと思います。
const result = JSON.parse(request.response); if (request.status < 200 || request.status >= 300) { throw new Error(result.error || 'response error'); }
The text was updated successfully, but these errors were encountered:
この件対応していただけると幸いです
Sorry, something went wrong.
No branches or pull requests
Qiita APIの利用制限を超過しているとき、以下のようなレスポンスが返ってきます。
cors.js
ファイル内で以下のような記述がありますが、上記の場合result.error
は存在しないので、コンソールに
Uncaught undefined
というエラーメッセージが表示されます。こんな感じにするといいのではないかと思います。
The text was updated successfully, but these errors were encountered: