i'm developing iOS application for some kind of video processing. This application should download videos from different sources (it already works with photo stream, iPod library and external files). Now i'm trying to implement downloading video files from user's Vimeo feed. i've created Vimeo API application, implemented authentication and implemented reading data from /me/feed (using VIMNetworking for iOS). Data (in JSON format mapped to VIMVideo objects) are successfully loaded and video information (name, creation time, thumbnail picture and so on ...) are successfully displayed in application's UICollectionView. But VideoFiles collection in VIMVideo object is nil. When i've tested my app in Vimeo API Playground this VideoFiles collection is also absent in JSON output. But native Vimeo iOS application can download video files from my Vimeo feed for local playback under my basic account so the account is not the restriction!
The question is:
how native Vimeo iOS application does file download from user's Vimeo feed and how can i implement the same functionality in my iOS app using Vimeo API (using VIMNetworking)?
Kind regards, Alexey