Right now I am using Playback.current query to fetch the track inside a TrackItem. Every time I hit the query, I am getting a different track of next index. Instead of running the query every time, if there would be some way of fetching all the tracks of stations? Thanks.
Is there a way to fetch all the tracks of a station?
52 views Asked by Tripti Kumar At
1
There are 1 answers
Related Questions in SWIFT
- Navigate after logged in with webservice
- URLSession requesting JSON array from server not working
- When using onDrag in SwiftUI on Mac how can I detect when the dragged object has been released anywhere?
- Protect OpenAI key using Firebase function
- How to correct error: "Cannot convert value of type 'MyType.Type' to expected argument type 'Binding<MyType>'"?
- How to share metadata of an audio url file to a WhatsApp conversation with friends
- Using @Bindable with a Observable type in SwiftUI
- How to make a scroll view of 9 images in a forEach loop open on image 6 if image 6 is clicked on from a grid?
- Using MTLPixelFormat.rgba16Float results in random round-off errors
- Search and highlight text of current text in PDFKit Swift
- How is passing a function as a parameter related to escaping autoclosure?
- Actionable notification api call not working in background
- Custom layout occupies all horizontal space
- Is it possible to fix slow CKAsset loading on Cloudkit?
- Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value - MapView.isMyLocationEnabled
Related Questions in GRAPHQL
- Expo Go crashing with on error message using Amplify Graphql to get an item
- Error: Response not successful: Received status code 405
- uninitialized constant GraphqlDevise::SchemaPlugin from graphql_devise
- Endpoint graphiql not working in Spring Boot application
- Relationships query in Tableau Metadata API by using GraphQL
- Dealing with Null Values in GraphQL API Response
- GraphQL filter query in react app with https://countries.trevorblades.com/ api
- Issue querying related data in Apollo Server 4 with Prisma Schema
- Error creating bean with name 'routerFunctionMapping' defined in class path resource
- Using Apollo client wrapper in Next.js 14 App router
- 400 Bad Request From React Axios Graphql SageX3
- graphql-java extension type redefine error from version 15
- How do I use and access the operation name in a graphQL query using spring-boot-starter-graphql and GraphQlTester?
- Upload file in GraphQL and apollo-server
- GraphQL and springboot resolver mapping problem
Related Questions in PANDORA
- Is Pandora Unofficial REST API broken
- Error message : [This stream is not active and must be resumed using the \'forceActive\' parameter. (STREAM_INACTIVE)]
- Is there any GraphQL Query to start a station from track?
- Getting error on previous query : [Ensure that source is set with /playback/source before this operation. (SOURCE_NOT_SET)]
- Is there a way to fetch all the tracks of a station?
- Is it possible to use a proxy/vpn just for one software?
- Implement Pandora channel as background music on my website. Jquery or Javascript
- Pandora Api auth.partnerLogin giving error
- Implementing Pandora FMS for monitoring
- Pandora ajax not working with waitForKeyElements
- pandora.com redirects to privateinternetaccess.com
- Sending play/pause requests to Pandora
- How do I change the background image of a Windows phone app
- How can I resolve a code 13 from Pandora on Android?
- How do I retrieve the current song name and time left from pianobar using python?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Pandora stations are dynamic in nature. There is no fixed set of tracks for a station. The API allows you to see the current track and the next track (via calls to peek), but the next track can change even after you've peeked. For example, if somebody provides feedback on the current track (thumbs up or thumbs down), the next track may be changed.
It's possible that you are thinking of playlists which are indeed a fixed set of tracks. All Pandora listeners can enjoy stations but playlists are generally restricted to Pandora Premium subscribers (though listeners who don't have Premium can still access playlist through Premium Sessions).
If you know the ID of a playlist and you want to get all the tracks for that playlist, you can use the "entity" query to lookup the track list:
I've used Highway Finds in the above example, but obviously you can plug in other playlist IDs (i.e. IDs that start with "PL:").
Does this answer your question?