Patrick Mackay
Patrick Mackay

Reputation: 21

Are there examples or support for Google Drive API with ColdFusion?

I would like to access the Google Drive API via ColdFusion (version 9) but I have not found any up to date information to do so. Does anyone know of any information out there regarding this?

Upvotes: 2

Views: 419

Answers (1)

JunYoung Gwak
JunYoung Gwak

Reputation: 2987

Since Google Drive SDK is basically HTTP request and since you can make http request with ColdFusion, you can use Google Drive SDK with ColdFusion. However, there is no official support for ColdFusion in Google Drive, and you should build your own library for it. Here is documentation about Drive API having some details of requests and responses you will have with Drive SDK.

FYI, you can easily test API requests using OAuth 2.0 Playground

Upvotes: 1

Related Questions