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
I wrote a basic function with the goal of querying tracks with a certain tag and auto reposting to the user's account. I noticed that the query is searching the "Popular tracks tagged with: XXX" rather than the recent tracks tab. I don't see any parameter option to change this and for the tag I need to query, I need all tracks to be reposted. It seems that if the track isn't popular enough it won't be found in the query at all.
See here for the tag I need to query and notice how the track doesn't appear in the popular tracks tab.
The output of the response JSON is [].
I tried for a tag with tracks in the popular tracks tab and it successfully returned the first 5 tracks on that list. So I have confirmed my auth and the endpoint are working.
Would really like to know if there is a way to query the recent tracks tab?
The text was updated successfully, but these errors were encountered:
I wrote a basic function with the goal of querying tracks with a certain tag and auto reposting to the user's account. I noticed that the query is searching the "Popular tracks tagged with: XXX" rather than the recent tracks tab. I don't see any parameter option to change this and for the tag I need to query, I need all tracks to be reposted. It seems that if the track isn't popular enough it won't be found in the query at all.
See here for the tag I need to query and notice how the track doesn't appear in the popular tracks tab.
Here is my query:
search_response = requests.get(SEARCH_URL, headers=headers, params={ 'tags': 'codex-collective', 'limit': 5 })
The output of the response JSON is [].
I tried for a tag with tracks in the popular tracks tab and it successfully returned the first 5 tracks on that list. So I have confirmed my auth and the endpoint are working.
Would really like to know if there is a way to query the recent tracks tab?
The text was updated successfully, but these errors were encountered: