You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
This one is slightly complicated by how Youtube's android/ios API responds. Whereas most other aspects of the API respond in a fairly straightforward manner, the order of the comment and the data for the comments are separated.
Note the commentKey and entityKey fields under continuationContents and frameworkUpdates respectively. I am not sure how best to parse this, so any input will be appreciated.
Of course, there is the workaround of calling the web version of the API instead, but that will mean the comments in VueTube will not be able to access some app-exclusive features from the Youtube app without some serious workarounds.
The text was updated successfully, but these errors were encountered:
Of course, there is the workaround of calling the web version of the API instead, but that will mean the comments in VueTube will not be able to access some app-exclusive features from the Youtube app without some serious workarounds.
In my opinion, it might make more sense to use the web API. The Android one is guaranteed to almost always give you a 1-2MB JSON response (especially the browse endpoint), so it'll just slow things down and give you headaches. It works great for the official apps because they're using protobuf, which is much faster and lightweight, but definitely not here.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This one is slightly complicated by how Youtube's android/ios API responds. Whereas most other aspects of the API respond in a fairly straightforward manner, the order of the comment and the data for the comments are separated.
For example, given this request
The response will be in two parts as follows (parts are cut for readability)
JSON Response
Note the
commentKey
andentityKey
fields undercontinuationContents
andframeworkUpdates
respectively. I am not sure how best to parse this, so any input will be appreciated.Of course, there is the workaround of calling the web version of the API instead, but that will mean the comments in VueTube will not be able to access some app-exclusive features from the Youtube app without some serious workarounds.
The text was updated successfully, but these errors were encountered: