gpt4 book ai didi

java - 尝试使用 kinvey 将图像从 Android 应用程序上传到云

转载 作者:太空宇宙 更新时间:2023-11-04 12:03:07 25 4
gpt4 key购买 nike

我正在尝试将保存在手机内存中、由 Android 应用程序点击的图像上传到云服务,并使用 Kinvey 来执行此操作。但我面临一些问题。

每次运行包含上传部分的代码时,都会遇到异常。我正在上传“.png”类型的图像。与 Google Cloud Platform 不同,任何到 blob 的转换都不是必需的过程。

这是我的 .java 代码 -

`Client mKinveyClient = new Client.Builder(APP_KEY, SECRET_KEY, this.getApplicationContext()).build();
mKinveyClient.enableDebugLogging();

mKinveyClient.ping(new KinveyPingCallback() {
public void onFailure(Throwable t) {
Log.e(TAG, "Kinvey Ping Failed", t);
}
public void onSuccess(Boolean b) {

Log.d(TAG, "Kinvey Ping Success");
}
});

java.io.File file = new java.io.File(Environment.getExternalStorageDirectory().getPath() + "/Camera/" + "IMG_20161115_193353.jpg");

mKinveyClient.file().upload(file, new UploaderProgressListener() {
public void onSuccess(Void result) {
Log.i(TAG, "successfully upload file");
}

@Override
public void onSuccess(FileMetaData fileMetaData) {
Log.i(TAG, "successfully uploaded file");
}
@Override
public void onFailure(Throwable error) {
Log.e(TAG, "failed to upload file.", error);
}
@Override
public void progressChanged(MediaHttpUploader uploader) throws IOException {
Log.i(TAG, "upload progress: " + uploader.getUploadState()); // all updates to UI widgets need to be done on the UI thread
}
});`

现在,虽然 ping 调用给了我成功的响应,但上传部分给了我一个错误。

E/Activity file: failed to upload file. com.kinvey.java.KinveyException: REASON: No user is currently logged in.

我在 kinvey 的讨论平台和这里也对这个主题进行了很多搜索。但我还是卡住了。我不知道我哪里出了问题或者我可能错过了什么。

如果有人成功通过 kinvey 上传图像,请帮助我。

最佳答案

任何类型的 Kinvey 操作都必须通过登录用户提供。在开始输入/输出任何信息之前,您必须注册(或登录)。

mKinveyClient.user().create("username", "password", new KinveyUserCallback()) {
@Override
public void onFailure(Throwable t) {
CharSequence text = "Could not sign up.";
Toast.makeText(getApplicationContext(), text, Toast.LENGTH_SHORT).show();
}
@Override
public void onSuccess(User u) {
//here we go on uploading file
}
});

您可以找到有关用户的更多信息here

关于java - 尝试使用 kinvey 将图像从 Android 应用程序上传到云,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40695283/

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