android - Google Cloud Functions - 客户端调用错误(Android Studio):FirebaseFunctionsException: Response is not valid JSON object

标签 android firebase google-cloud-functions

无法执行 Google Cloud Functions Android 客户端调用。

我从云控制台创建 Cloud Function,并在云控制台上进行测试。

但在 Android 客户端应用程序上,它不起作用。

所以,我确实在我的 android studio 上导入了谷歌云服务快速启动项目,同样的错误。

这是快速启动项目的 url。

https://cloud.google.com/functions/docs/quickstart-console

这是我的代码。

谷歌云函数调用类

public class TestClass {

private FirebaseFunctions mFunctions;

public TestClass(){
    mFunctions=new FirebaseFunctions();
}
..

public Task<String> myFunc(String text) {
    // Create the arguments to the callable function, which is just one string
    Map<String, Object> data = new HashMap<>();
    data.put("message", text);

    return mFunctions
            .getHttpsCallable("myFunc")
            .call(data)
            .continueWith(new Continuation<HttpsCallableResult, String>() {
                @Override
                public String then(@NonNull Task<HttpsCallableResult> task) throws Exception {
                    // This continuation runs on either success or failure, but if the task
                    // has failed then getResult() will throw an Exception which will be
                    // propagated down.
                    String result = (String) task.getResult().getData();
                    Log.d("gcf",result);
                    return result;
                }
            });
}

在MainActivity的执行方法中

button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            TestClass testClass=new TestClass();

            testClass.myFunc("im bhw")
                    .addOnCompleteListener(new OnCompleteListener<String>() {
                        @Override
                        public void onComplete(@NonNull Task<String> task) {
                            if (!task.isSuccessful()) {
                                Exception e = task.getException();
                                if (e instanceof FirebaseFunctionsException) {
                                    FirebaseFunctionsException ffe = (FirebaseFunctionsException) e;
                                    FirebaseFunctionsException.Code code = ffe.getCode();
                                    Object details = ffe.getDetails();
                                }

                                // [START_EXCLUDE]
                                Log.w("gcf", "myFunc:onFailure", e);
                                Toast.makeText(getApplicationContext(),"An error occurred.",Toast.LENGTH_SHORT).show();
                                return;
                                // [END_EXCLUDE]
                            }

                            // [START_EXCLUDE]
                            String result = task.getResult();
                            Toast.makeText(getApplicationContext(),result,Toast.LENGTH_SHORT).show();

                            // [END_EXCLUDE]
                        }
                    });
        }
    });

谷歌云函数

exports.myFunc = (req, res) => {
    if (req.body.message === undefined) {
        res.status(400).send('No message defined!');
    } 
    else {
        console.log(req.body.message);
        res.status(200).send('Success: ' + req.body.message);
    }
};
exports.myFunc = (req, res) => {
    if (req.body.message === undefined) {
    res.status(400).send('No message defined!');
    }
    else {
        console.log(req.body.message);
        res.status(200).send('Success: ' + req.body.message);
    }
};

结果

com.google.firebase.functions.FirebaseFunctionsException: Response is not valid JSON object.
    at com.google.firebase.functions.FirebaseFunctions$4.onResponse(SourceFile:296)
    at com.squareup.okhttp.Call$AsyncCall.execute(Call.java:177)
    at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
    at java.lang.Thread.run(Thread.java:761)
 Caused by: org.json.JSONException: Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject
    at org.json.JSON.typeMismatch(JSON.java:111)
    at org.json.JSONObject.<init>(JSONObject.java:160)
    at org.json.JSONObject.<init>(JSONObject.java:173)
    at com.google.firebase.functions.FirebaseFunctions$4.onResponse(SourceFile:294)
    at com.squareup.okhttp.Call$AsyncCall.execute(Call.java:177) 
    at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33) 
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) 
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) 
    at java.lang.Thread.run(Thread.java:761) com.google.firebase.functions.FirebaseFunctionsException: Response is not valid JSON object.
    at com.google.firebase.functions.FirebaseFunctions$4.onResponse(SourceFile:296)
    at com.squareup.okhttp.Call$AsyncCall.execute(Call.java:177)
    at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
    at java.lang.Thread.run(Thread.java:761)
 Caused by: org.json.JSONException: Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject
    at org.json.JSON.typeMismatch(JSON.java:111)
    at org.json.JSONObject.<init>(JSONObject.java:160)
    at org.json.JSONObject.<init>(JSONObject.java:173)
    at com.google.firebase.functions.FirebaseFunctions$4.onResponse(SourceFile:294)
    at com.squareup.okhttp.Call$AsyncCall.execute(Call.java:177) 
    at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33) 
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) 
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) 
    at java.lang.Thread.run(Thread.java:761) 

Firebase 官方网站引用的所有代码 https://firebase.google.com/docs/functions/callable?authuser=0

在 Cloud Console DashBoard 上,API 流量捕获

什么是物质?

最佳答案

响应至少必须包含一个具有数据错误 值的 JSON 对象。

如果您将函数修改为:

exports.myFunc = (req, res) => {
    if (req.body.message === undefined) {
        res.status(400).send({error: 'No message defined!'});
    } 
    else {
        console.log(req.body.message);
        res.status(200).send({data: 'Success: ' + req.body.message});
    }
};
exports.myFunc = (req, res) => {
    if (req.body.message === undefined) {
    res.status(400).send({error: 'No message defined!'});
    }
    else {
        console.log(req.body.message);
        res.status(200).send({data: req.body.message});
    }
};

你应该没问题。

检查 https://firebase.google.com/docs/functions/callable-reference

关于android - Google Cloud Functions - 客户端调用错误(Android Studio):FirebaseFunctionsException: Response is not valid JSON object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51184467/

相关文章:

javascript - 即使在客户端调用一次,云函数也会执行多次

javascript - 使用 Firebase 函数将数据索引到 ElasticSearch,并非所有字段都被索引

Android 日志记录级别

android - proguard 警告库类 android.webkit.WebView 依赖程序类 android.webkit.WebViewClient

android - 无法从只读帐户中删除联系人 - Sync Adapter

javascript - 使用 firebase 并使用动态键名保存

firebase - 上传 Set<String> 会导致 flutter 出错

android - 如何解决添加Firebase库失败的错误相关性

android - 如何制作相对于 Canvas 的坐标

java - Firebase 云函数更改超时