私は流星にgithubのAPIを使用していましたが、この問題を解決することができませんでした:githubのAPIのサポートされていないメディアタイプ415
このコードは、特定のレポのためのトラフィックの合計数を取得しようとします。
HTTP.call('GET', 'https://api.github.com/repos/hackmdio/hackmd/traffic/views',
{
headers:
{
'Content-Type':'application/json',
"Accept":"application/vnd.github.v3+json",
"User-Agent": "whales"
},
},
function(error, response) {
if (error) {
console.log('---------------------------error occurred-----------------------------------')
console.log('---------------------------error occurred-----------------------------------')
console.log(error);
} else {
console.log('--------------------------data got it!!-------------------------------------')
console.log('--------------------------data got it!!-------------------------------------')
console.log(response);
}
});
エラー:
{
"message": "If you would like to help us test the Repo Traffic API during its preview period, you must specify a custom media type in the 'Accept' header. Please see the docs for full details.",
"documentation_url": "https://developer.github.com/v3"
}
私は同様の問題を検索し、「コンテンツタイプ」を追加し、「同意する」が、それはまだ働いていません。
私はこれを郵便配達でやってみましたが、同じヘッダーを持つ端末でもやってみましたが、このエラーは起こり続けました。
ありがとうございます。