Dropbox API v2 launches
blogs.dropbox.com
Dropbox API v2 launches
1–10 of 85 posts
Re: Dropbox API v2 launches
#2Love the layout of the API Explorer. Makes it easy to see exactly what is being requested.
Re: Dropbox API v2 launches
#3Is there an accessible description of the API? i.e., what's driving the "code generation process"? Is that open and something I could use to generate a client for ?
Re: Dropbox API v2 launches
#4A simple POST based API? What is this blasphemy?
Re: Dropbox API v2 launches
#5A simple POST based API? What is this blasphemy?
It is interesting that you request the /get_account link with a POST method.
Re: Dropbox API v2 launches
#6A simple POST based API? What is this blasphemy?
It is interesting that you request the /get_account link with a POST method.
As systems grow you always end up wanting to parameterize GET apis with things that you can't reasonably continue to stuff into headers, matrix params, and a wonky URL (in my experience).
Re: Dropbox API v2 launches
#7Is there an accessible description of the API? i.e., what's driving the "code generation process"? Is that open and something I could use to generate a client for ?
Stay tuned for more details! The short answer is that yes, you'll be able to do that, but we haven't published that API description yet.
Re: Dropbox API v2 launches
#8A simple POST based API? What is this blasphemy?
As long as everything is well documented, I don't see the problem. With most languages, you'll probably want to use an SDK anyway.
What's the problem with a POST based API?
Re: Dropbox API v2 launches
#9Why would they choose RPC style endpoints over REST?
Re: Dropbox API v2 launches
#10Earlier quoted context omitted.
It is interesting that you request the /get_account link with a POST method.
As systems grow you always end up wanting to parameterize GET apis with things that you can't reasonably continue to stuff into headers, matrix params, and a wonky URL (in my experience).
And especially, browsers limit URLs to as small as 2 kB. They go into more detail on this design decision here: https://blogs.dropbox.com/developers/2015/03/limitations-of-...