1
我有一個網站,我使用Guzzle和Reddits json api獲取reddit評論。雖然它往往很慢,但它運作良好,但在嘗試通過/api/morechildren.json端點加載更多子項時遇到了問題。Reddit更多兒童API
試圖獲得更多的孩子時,我總是收到403禁止的錯誤。這些是我正在使用的參數,包括我正在使用的數據和端點。
array(2) {
["request"]=>
string(44) "https://www.reddit.com/api/morechildren.json"
["data"]=>
array(6) {
["link_id"]=>
string(10) "t3_cz36xw7"
["id"]=>
string(10) "t1_cz361ai"
["depth"]=>
string(1) "1"
["children"]=>
string(7) "cz36xw7"
["sort"]=>
string(10) "confidence"
["api_type"]=>
string(4) "json"
}
}
你可以看到,我試圖打這裏的API:無論我怎麼努力,我得到https://www.reddit.com/dev/api/oauth#GET_api_morechildren
「字符串(116)「客戶端錯誤響應[URL] https://www.reddit.com/api/morechildren.json [狀態碼] 403 [reason phrase]禁止「'
任何想法?