-
Hi, great project! I've tried following the guide here: https://github.com/lighttube-org/InnerTube/wiki/Authorization#using-a-refresh-token However, when following the steps and logging into YouTube TV, I'm unable to see any Network Requests to My best guess is that the request name has changed. Looking to see if I can get some clarity here. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Just checked, and the requests appear on my side. Though I have found out that the user agent in the wiki does not work anymore. Can you try with this one? If you still cannot see the requests, after a successful log in, you should try runing these scripts in the javascript console. The output should be the value you need JSON.parse(localStorage.getItem("yt.leanback.default::last-identity-used")).data.identityCredentials.refreshToken var data = JSON.parse(localStorage.getItem("yt.leanback.default::available-identities")).data;data[Object.keys(data)[0]].identityCredentials.refreshToken (both of them basically get the same data from different localStorage entries, I recommend trying the first one first) |
Beta Was this translation helpful? Give feedback.
Just checked, and the requests appear on my side. Though I have found out that the user agent in the wiki does not work anymore. Can you try with this one?
Mozilla/5.0 (PlayStation; PlayStation 4/8.50) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Safari/605.1.15
If you still cannot see the requests, after a successful log in, you should try runing these scripts in the javascript console. The output should be the value you need