使用 Cloudrail 将文件上传到 OneDrive 时出错
Error when uploading file to OneDrive using Cloudrail
我尝试按照这个 CloudRail 示例进行操作。
这是我的代码:
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 REDIRECT_URI is "https://login.live.com/oauth20_desktop.srf"
InputStream inputStream = new FileInputStream(fileToUpload);
client.upload(fileToUpload.getPath(), inputStream, fileToUpload.length(), false);
我收到这个错误:
java.lang.ClassNotFoundException: com.mashape.unirest.request.HttpRequestWithBody
在第一行。
请帮忙。
当您集成来自 Github 的纯 .jar 文件时,您还需要包含 unirest 库,因为它在 CloudRail SDK 中是必需的。您可以在这里下载:https://github.com/Mashape/unirest-java
我尝试按照这个 CloudRail 示例进行操作。
这是我的代码:
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 REDIRECT_URI is "https://login.live.com/oauth20_desktop.srf"
InputStream inputStream = new FileInputStream(fileToUpload);
client.upload(fileToUpload.getPath(), inputStream, fileToUpload.length(), false);
我收到这个错误:
java.lang.ClassNotFoundException: com.mashape.unirest.request.HttpRequestWithBody
在第一行。
请帮忙。
当您集成来自 Github 的纯 .jar 文件时,您还需要包含 unirest 库,因为它在 CloudRail SDK 中是必需的。您可以在这里下载:https://github.com/Mashape/unirest-java