vimeo / vimeo.py

Official Python library for the Vimeo API.
https://developer.vimeo.com
Apache License 2.0
210 stars 84 forks source link

How to create subfolder/nasted-folder inside parent folder with Vimeo API using python? #178

Closed entbappy closed 2 years ago

entbappy commented 2 years ago

I am trying vimeo API using python. I succeeded in creating and listing vimeo folder with vimeo API in just root location.

However, I cannot find how to create subfolders inside a parent folder in this API. I have read official documents but I could not find any related APIs. How to create subfolders/nasted folders in parent folders in vimeo using python?

WhatsApp Image 2022-01-26 at 8 32 43 PM

aaronm67 commented 2 years ago

You can use a "parent_folder_uri" parameter on /me/projects.

So

POST /me/projects' data = { parent_folder_uri = '/users/12345/projects/6789', 'name' = 'NLP', etc }

aaronm67 commented 2 years ago

Duplicate of #177, moving discussion there.

entbappy commented 2 years ago

You can use a "parent_folder_uri" parameter on /me/projects.

So

POST /me/projects' data = { parent_folder_uri = '/users/12345/projects/6789', 'name' = 'NLP', etc }

Thank you so much ,, It worked😀👏