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…
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…
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…
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…
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…
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…
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…
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":…
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…
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…
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…
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…
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
…
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…
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]",…