Skip to main content

%SYS.MFT.Connection.Dropbox

Class %SYS.MFT.Connection.Dropbox Extends %SYS.MFT.Connection.Base [ System = 4 ]

Methods

DefaultURL

ClassMethod DefaultURL() As %String

Each subclass will define the DefaultURL method to supply the default URL for the service.

ContentURL

Method ContentURL() As %String

The URL for uploading and downloading files.

CreateClient

ClassMethod CreateClient(name As %String, sslConfiguration As %String, clientId As %String, clientSecret As %String, issuer As %String = "https://api.dropboxapi.com", host As %String = "localhost", port As %Integer = "", prefix As %String = "", useSSL As %Boolean = 1) As %Status

Create an OAuth 2.0 client with the parameters required to authorize with Dropbox.
name is the name to be given to the OAuth 2.0 client.
sslConfiguration is the SSLConfiguration used to make the HTTP request.
clientId and ClientSecret are the id and secret for the OAuth 2.0 client which is obtained from the Dropbox App definition.
If addiitonal properties are needed, then the Dropbox OAuth 2.0 client may be opened and modified.
If a server definition does not yet exist for Dropbox, then a new server definition is created.

RevokeToken

Method RevokeToken() As %Status

Revoke the token associated with this connection. Revoke the token in Dropbox as well as locally.

MakeRPCRequest

Method MakeRPCRequest(parameters As %String, request As %DynamicObject, Output response As %DynamicObject) As %Status

Make an RPC style http request to Dropbox API

MakeUploadRequest

Method MakeUploadRequest(parameters As %String, request As %DynamicObject, body As %BinaryStream, Output response As %DynamicObject) As %Status

Make an Upload style http request to Dropbox API

MakeDownloadRequest

Method MakeDownloadRequest(parameters As %String, request As %DynamicObject, body As %BinaryStream, Output response As %DynamicObject) As %Status

Make an Download style http request to Dropbox API