2017-04-05 65 views
0

我想通過使用YouTube API的v3,Videoid來提取所有視頻評論。google的client_secrets.json中redirect_uris的默認值是什麼

Error: The client secrets were invalid: Missing property "redirect_uris" in a client type of default value for redirect_uris. This redirect_uris is also not present, by default, in client_secrets.json file.

請提供一些解決方案。

+0

我懷疑您在Google開發者控制檯中創建了錯誤的憑據類型,或者沒有正確填寫重定向URI。您應該創建Oauth類型的客戶端ID類型 - > Web應用程序。 – DaImTo

+0

謝謝...現在它的工作 – Manthan

回答

1

重定向URI很容易設置。只需轉到您的Google開發者控制檯,轉到您的oauth clientID並在URI起源的末尾添加「oauth2callback」。

例如,我的我的URI Origin是http://localhost,因爲我喜歡在我的計算機上進行測試。我的重定向URI將是http://localhost/oauth2callback 。當然,請確保您的應用中使用了正確的OAuth ClientID。 enter image description here

+0

謝謝....它已完成 – Manthan

+0

好的工作,你可以勾選複選標記爲答覆。 – noogui