Questions tagged [cloudrail]

CloudRail is a free software library that abstracts multiple APIs from different providers into a single & universal interface.

Related links:

SDK:

33 questions
4
votes
1 answer

Simple Download with CloudRail fails

I am trying to implement an application that includes downloading files from Dropbox. It looks like there is a simple straightforward framework that does that (CloudRail). But the codes crashes when I try to work with the file downloaded (in this…
Robert Reiz
  • 4,243
  • 2
  • 30
  • 43
3
votes
1 answer

Cloudrail - OneDrive API : Advanced search request fails

I'm using cloudrail Node.Js v2.17.3. I have to do an advanced request on OneDrive API. The authentication part and getting/storing credentials have succeeded. Here is the request I have to do (according to OneDrive's…
zerek
  • 253
  • 1
  • 12
2
votes
2 answers

CloudRail OneDriveBusiness only authenticates once

We have implemented a few connections to cloud providers using CloudRail. For most of them (Google Drive, Box, Dropbox and OneDrive) we are asked for out username and password and then to allow access each time we connect without using stored…
Gary O
  • 27
  • 5
2
votes
1 answer

Upload/download files CloudRail Android/Dropbox

I'm working with CloudRail in order to upload/download files from dropbox to my android device. I don't know how to implement the upload or the download methods. I'm getting lost with the file path directories when it comes to create a simple…
Jadovi
  • 35
  • 4
2
votes
2 answers

Get selected tree node item full path in JavaFX

I have a TreeView component and content of it like this: root item1 item2 Folder1 Folder2 item101 item3 I want it to return the path /root/Folder1/Folder2/item101 when selected so that i can put that in the download command. Below is the…
KnightHood
  • 55
  • 1
  • 8
2
votes
1 answer

Can cloudrail be used serverless?

Cloudrail seems perfect to simplify interaction of a web page with e.g. google drive or other cloud service. And this may be due to my lack of understanding and lack of knowledge of web development and Node.js, but can cloudrail be used…
asoundmove
  • 1,292
  • 3
  • 14
  • 28
2
votes
1 answer

Using an Android aar library in a Gluon JavaFXPorts project

my question is simple enough. I am using Gluon's plugin for Eclipse and developing an application in JavaFX to run on Android. However, I need to use an Android library (.aar format) and after a while of trying, cannot. Does anybody know how I can…
user4135709
1
vote
1 answer

Store D2C messages in Azure SQL database

I am trying to store sensor readings received from Cloudrail.Box as a JSON payload into Azure SQL database. The edge function I'm currently using outputs the message(shown below) in batches based on the set frequency. { "Temp_V_Raw":…
1
vote
1 answer

ICloudStorage.GetChildren() never return

I'm trying to access Google Drive with CloudRail using the following codes. // Actual string value removed. private const string GDRIVE_CLIENT_ID = "client_id"; private const string ANDROID_PACKAGE_NAME = "package_name"; private const string…
Noctis Tong
  • 459
  • 1
  • 7
  • 17
1
vote
1 answer

CloudRail implementation of GoogleDrive

Is there any CloudRail sample only for GoogleDrive upload/download? I followed this video and this tuorial and managed to make it working for authentication (Really great tutorials, even for newbies). Then I tried to use github sample for cloud…
Manoj Pathak
  • 209
  • 1
  • 5
  • 15
1
vote
0 answers

Uploading a File CloudRail Error

I have this code for creating a file, writing inside and uploading it to my dropbox. The file is created correctly, I can't find the solution to the error console. Tried some different solutions involving the call to the path…
Jadovi
  • 35
  • 4
1
vote
2 answers

Unknown category error

When I use the category property I see this error: Fatal error: Uncaught CloudRail\Error\IllegalArgumentError: Illegal argument used: Unknown category. in ...\vendor\cloudrail\library-php\src\Service\GooglePlaces.php Without category all work…
Yura Kosyak
  • 401
  • 3
  • 16
1
vote
0 answers

cloudrail-sdk-java: Twitter

currently, I try to use CloudRail with the last version of cloudrail-si-java (version: 2.21.1), but I get this error with Twitter API: Exception in thread "main" java.lang.RuntimeException: ServiceCode Error in function authenticate at 13 at …
pi-2r
  • 1,259
  • 4
  • 27
  • 52
1
vote
1 answer

Error when uploading file to OneDrive using Cloudrail

I tried following this CloudRail sample. Here is my code: OneDrive client = new OneDrive(new LocalReceiver(8082), CLIENT_ID, CLIENT_SECRET, REDIRECT_URI, ""); //I'm not sure about the parameter 'state' so I left an empty string here //The…
omglolgg
  • 115
  • 1
  • 10
1
vote
1 answer

Android CloudRail Branded site fails - "Unexpected token )" (community.js line 18)

Since yesterday i can't login to dropbox account using Android CloudRail Integration. My code is as simple as this: CloudRail.setAppKey([License Key]); final CloudStorage cs = new Dropbox(this.getApplicationContext(), "[clientIdentifier]",…
1
2 3