gpt4 book ai didi

java - 代号一 - Dropbox 2 中的 Json

转载 作者:行者123 更新时间:2023-11-30 03:07:15 25 4
gpt4 key购买 nike

我正在使用 firebase 通过我的 CN1 应用程序发送 Json。这是我的代码,它工作正常,但我想将这些内容发送到 Dropbox,但我无法使其工作。 (我已经从他们的网站获得了我的 token 、 key 和 secret )

您能否告诉我需要进行哪些更改才能将我的资料上传到 Dropbox?

   @Override
protected void onPrincipal_ButtonJsonAction(Component c, ActionEvent event) {

final String data = Result.fromContent(hashtableWithInfo).toString();
String firebase = "https://fire-game-258.firebaseio.com/example.json";

ConnectionRequest request = new ConnectionRequest() {
@Override
protected void buildRequestBody(OutputStream os) throws IOException {
os.write(data.getBytes("UTF-8"));
}
};
request.setUrl(firebase);
request.setPost(true);
request.setHttpMethod("POST");
request.setContentType("application/json");
NetworkManager.getInstance().addToQueueAndWait(request);
}

非常非常感谢。

最佳答案

Firebase 和 Dropbox 是完全不同的 API,需要经历完全不同的流程。将文件保存到 Dropbox 需要特定用户的 OAuth 流程,而 firebase 是全局 API。

我建议您查看 parse,它更类似于 firebase,并且已经在 J​​ava 中具有标准化的内置映射: https://github.com/sidiabale/parse4cn1/

关于java - 代号一 - Dropbox 2 中的 Json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34446146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com