0

I am trying to create a groovy script that will, based on some conditions, delete a dropbox folder full of artifacts.

I have been struggling to understand/figure out how to use Groovy restful API's without installing a bunch of Grails libraries or plugins, or the Dropbox API library from github.

Is it possible to use this dropbox URL: https://api.dropboxapi.com/1/fileops/delete_folder without downloading extra libraries?

I'm having a lot of trouble finding information on the subject without the use of additional software.

Thanks !

  • Possible duplicate of [Sending HTTP POST Request In Java](http://stackoverflow.com/questions/3324717/sending-http-post-request-in-java) – Emmanuel Rosa Feb 25 '16 at 01:43

1 Answers1

0

Yes, you can easily create your own dropbox client from scratch but it is easier to check hints for JAVA developers and github repo with dropbox-sdk-core, which is already implementing dropbox API.

Remember to check out examples on github.

Michal_Szulc
  • 3,335
  • 6
  • 29
  • 51