我正在嘗試整合Qiniu SDK進行音頻上傳。根據它的文檔,我們首先需要獲得訪問令牌。 因爲我們需要在任何api調用中傳遞AccessToken。Qiniu:總是返回「405不允許」
http://developer.qiniu.com/docs/v6/api/reference/acc/access-token.html
我試圖調用API與以下數據。
host : http://acc.qbox.me
method : POST
Parameters :
grant_type = password
username = <username>
password = <password>
但還是把它給我下面的響應
<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.4.4</center>
</body>
</html>
請任何可以引導我什麼是錯了進去。
405是方法不允許的。你確定你的服務支持POST嗎? –